Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MIRACUM
dqa
DQAgui
Commits
8024a6c0
Commit
8024a6c0
authored
2 years ago
by
Jonathan Mang
Browse files
Options
Download
Email Patches
Plain Diff
chore: added sitename presetting in demo mode
parent
b7a53a1f
master
colored_diff_summary
development
development-Differences
fix_settings_from_env
lab-module
latest
time_compare_fix
trino
v0.2.4
v0.2.3
v0.2.2
v0.2.1
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
DESCRIPTION
+1
-1
DESCRIPTION
NEWS.md
+2
-1
NEWS.md
R/moduleConfig.R
+11
-5
R/moduleConfig.R
data-raw/devstuffs.R
+1
-1
data-raw/devstuffs.R
with
15 additions
and
8 deletions
+15
-8
DESCRIPTION
+
1
-
1
View file @
8024a6c0
Package: DQAgui
Title: Graphical User Interface for Data Quality Assessment
Version: 0.2.0.900
4
Version: 0.2.0.900
5
Authors@R: c(
person("Lorenz A.", "Kapsner", , "lorenz.kapsner@uk-erlangen.de", role = c("cre", "aut"),
comment = c(ORCID = "0000-0003-1866-860X")),
...
...
This diff is collapsed.
Click to expand it.
NEWS.md
+
2
-
1
View file @
8024a6c0
...
...
@@ -13,6 +13,7 @@
*
switched from "data system" to "database" in wordings
#### Others
*
added waiter to wait for report rendering finished and set preset for demo-mode in csv list
*
removed shinyapps deployment information
*
updated docker files
*
uncommented global stuff from shinyapps.io upload
...
...
@@ -21,7 +22,7 @@
*
updated image to R 4.2.0
*
updated new dev version
Full set of changes:
[
`v0.2.0...
031c365
`
](
https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.2.0...
031c365
)
Full set of changes:
[
`v0.2.0...
b7a53a1
`
](
https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.2.0...
b7a53a1
)
## v0.2.0 (2022-05-20)
...
...
This diff is collapsed.
Click to expand it.
R/moduleConfig.R
+
11
-
5
View file @
8024a6c0
...
...
@@ -955,12 +955,18 @@ module_config_server <-
})
updateSelectInput
(
session
,
"config_sitename"
,
session
=
session
,
inputId
=
"config_sitename"
,
choices
=
rv
$
sitenames
,
selected
=
ifelse
(
!
is.null
(
rv
$
sitename
),
rv
$
sitename
,
character
(
0
))
selected
=
ifelse
(
test
=
!
is.null
(
rv
$
sitename
),
yes
=
rv
$
sitename
,
no
=
ifelse
(
test
=
isTRUE
(
rv
$
demo_usage
),
yes
=
rv
$
sitenames
[[
1
]],
no
=
character
(
0
)
)
)
)
}
})
...
...
This diff is collapsed.
Click to expand it.
data-raw/devstuffs.R
+
1
-
1
View file @
8024a6c0
...
...
@@ -28,7 +28,7 @@ my_desc$set_authors(c(
# Remove some author fields
my_desc
$
del
(
"Maintainer"
)
# Set the version
my_desc
$
set_version
(
"0.2.0.900
4
"
)
my_desc
$
set_version
(
"0.2.0.900
5
"
)
# The title of your package
my_desc
$
set
(
Title
=
"Graphical User Interface for Data Quality Assessment"
)
# The description of your package
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help