Skip to content

Commit 530064b

Browse files
committed
fix server.R
1 parent 35e2558 commit 530064b

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "dcf-shiny",
3-
"version": "0.4.2",
3+
"version": "0.4.2-1",
44
"date": "2024-04-11",
55
"dependencies": [
66
{"package": "R6", "version": "2.5.1", "repos": "https://cran.r-project.org"},

server.R

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
server <- function(input, output, session) {
44

55
waiting_screen<-tagList(
6-
h3("Initializing"),
6+
h3("Initializing..."),
77
spin_flower()
88
)
99

@@ -50,9 +50,8 @@ server <- function(input, output, session) {
5050

5151
#COMPONENTS
5252
waiter_update(html = tagList(
53-
h3(paste0("Welcome to ",CONFIG$dcf$name)),
54-
spin_flower(),
55-
h4("Loading components..."),
53+
h3("Loading components...")
54+
spin_flower()
5655
))
5756
COMPONENTS <- loadComponents(profile = PROFILE, sdi = FALSE)
5857

@@ -66,9 +65,8 @@ server <- function(input, output, session) {
6665
#The file should include the local path for your shiny config file in that way:
6766
#DCF_SHINY_CONFIG=<your config path>
6867
waiter_update(html = tagList(
69-
h3(paste0("Welcome to ",CONFIG$dcf$name)),
70-
spin_flower(),
71-
h4("Configuring..."),
68+
h3("Loading configuration..."),
69+
spin_flower()
7270
))
7371
local_config_file <- Sys.getenv("DCF_SHINY_CONFIG")
7472
if(nzchar(local_config_file)) config_file <- local_config_file

0 commit comments

Comments
 (0)