From 79ae0936fdd731e52c699b16975da726588a6b28 Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Fri, 10 May 2024 12:18:34 -0400 Subject: [PATCH] Drop "?" (Help) from DatasetActions list -- it's confusing since it just runs rerun. This used to pop up the tool help text in the panel, but the display was always awkward and it never found much use. Current implementation does exactly what rerun does (literally called rerun method). --- .../src/components/History/Content/Dataset/DatasetActions.vue | 4 ---- client/src/utils/navigation/navigation.yml | 1 - client/src/utils/navigation/schema.ts | 1 - 3 files changed, 6 deletions(-) diff --git a/client/src/components/History/Content/Dataset/DatasetActions.vue b/client/src/components/History/Content/Dataset/DatasetActions.vue index fbdd789c368a..b5fb05f5c240 100644 --- a/client/src/components/History/Content/Dataset/DatasetActions.vue +++ b/client/src/components/History/Content/Dataset/DatasetActions.vue @@ -172,10 +172,6 @@ function onHighlight() { @click.stop="onHighlight"> - - - - diff --git a/client/src/utils/navigation/navigation.yml b/client/src/utils/navigation/navigation.yml index 58246b2db03c..258da5b54560 100644 --- a/client/src/utils/navigation/navigation.yml +++ b/client/src/utils/navigation/navigation.yml @@ -180,7 +180,6 @@ history_panel: # Action buttons... download_button: '${_} .download-btn' info_button: '${_} .params-btn' - tool_help_button: '${_} .fa.fa-question' rerun_button: '${_} .rerun-btn' alltags: '${_} .stateless-tags .tag' diff --git a/client/src/utils/navigation/schema.ts b/client/src/utils/navigation/schema.ts index 649462897c25..47885e7e479d 100644 --- a/client/src/utils/navigation/schema.ts +++ b/client/src/utils/navigation/schema.ts @@ -101,7 +101,6 @@ interface Roothistory_panelitem extends Component { delete_button: SelectorTemplate; download_button: SelectorTemplate; info_button: SelectorTemplate; - tool_help_button: SelectorTemplate; rerun_button: SelectorTemplate; alltags: SelectorTemplate; }