Skip to content

Commit

Permalink
Drop "?" (Help) from DatasetActions list -- it's confusing since it just
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
dannon committed May 10, 2024
1 parent 1e9205a commit 79ae093
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,6 @@ function onHighlight() {
@click.stop="onHighlight">
<FontAwesomeIcon :icon="faSitemap" />
</BButton>

<BButton v-if="showRerun" class="px-1" title="Help" size="sm" variant="link" @click.stop="onRerun">
<FontAwesomeIcon :icon="faQuestion" />
</BButton>
</div>
</div>
</div>
Expand Down
1 change: 0 additions & 1 deletion client/src/utils/navigation/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
1 change: 0 additions & 1 deletion client/src/utils/navigation/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 79ae093

Please sign in to comment.