Skip to content

Commit

Permalink
update app UI to be clearer about save data options
Browse files Browse the repository at this point in the history
Previously it was unclear that 'exit app' was required to save data to the workspace; this is now explicit
  • Loading branch information
mjwestgate committed Jan 10, 2020
1 parent fde2df2 commit d9bf7fe
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
12 changes: 6 additions & 6 deletions R/screen_abstracts_ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ screen_abstracts_ui <- function(){
label = "Import",
multiple = TRUE
),
actionButton(
inputId = "save_data",
label = "Save Data",
width = "85%"
),
actionButton(
inputId = "clear_data",
label = "Clear Data",
width = "85%"
),
actionButton(
inputId = "exit_app",
label = "Exit App",
label = "Save to Workspace",
width = "85%"
),
actionButton(
inputId = "save_data",
label = "Save to File",
width = "85%"
),
br()
Expand Down
12 changes: 6 additions & 6 deletions R/screen_duplicates_ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ screen_duplicates_ui <- function(){
uiOutput("group_selector")
),
br(),
actionButton(
inputId = "save_data",
label = "Save Data",
width = "85%"
),
actionButton(
inputId = "clear_data",
label = "Clear Data",
width = "85%"
),
actionButton(
inputId = "exit_app",
label = "Exit App",
label = "Save to Workspace",
width = "85%"
),
actionButton(
inputId = "save_data",
label = "Save to File",
width = "85%"
),
br()
Expand Down
12 changes: 6 additions & 6 deletions R/screen_titles_ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ screen_titles_ui <- function(){
label = "Import",
multiple = TRUE
),
actionButton(
inputId = "save_data",
label = "Save Data",
width = "85%"
),
actionButton(
inputId = "clear_data",
label = "Clear Data",
width = "85%"
),
actionButton(
inputId = "exit_app",
label = "Exit App",
label = "Save to Workspace",
width = "85%"
),
actionButton(
inputId = "save_data",
label = "Save to File",
width = "85%"
),
br()
Expand Down
12 changes: 6 additions & 6 deletions R/screen_topics_ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ screen_topics_ui <- function(){
)
),
br(),
actionButton(
inputId = "save_data",
label = "Save Data",
width = "85%"
),
actionButton(
inputId = "clear_data",
label = "Clear Data",
width = "85%"
),
actionButton(
inputId = "exit_app",
label = "Exit App",
label = "Save to Workspace",
width = "85%"
),
actionButton(
inputId = "save_data",
label = "Save to File",
width = "85%"
),
br()
Expand Down

0 comments on commit d9bf7fe

Please sign in to comment.