Skip to content

Commit

Permalink
Merge pull request galaxyproject#18124 from dannon/drop-help-link
Browse files Browse the repository at this point in the history
Drop "?" (Help) from DatasetActions list
  • Loading branch information
martenson authored May 12, 2024
2 parents 65f258c + c7e840e commit f2b163b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
16 changes: 2 additions & 14 deletions client/src/components/History/Content/Dataset/DatasetActions.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
<script setup lang="ts">
import { library } from "@fortawesome/fontawesome-svg-core";
import {
faBug,
faChartBar,
faInfoCircle,
faLink,
faQuestion,
faRedo,
faSitemap,
} from "@fortawesome/free-solid-svg-icons";
import { faBug, faChartBar, faInfoCircle, faLink, faRedo, faSitemap } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
import { BButton } from "bootstrap-vue";
import { computed } from "vue";
Expand All @@ -23,7 +15,7 @@ import { type ItemUrls } from ".";
import DatasetDownload from "@/components/History/Content/Dataset/DatasetDownload.vue";
library.add(faBug, faChartBar, faInfoCircle, faLink, faQuestion, faRedo, faSitemap);
library.add(faBug, faChartBar, faInfoCircle, faLink, faRedo, faSitemap);
interface Props {
item: HDADetailed;
Expand Down Expand Up @@ -172,10 +164,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 f2b163b

Please sign in to comment.