Skip to content

Commit

Permalink
add <HelpText> to the link
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Oct 24, 2024
1 parent 3d6579b commit f518ef2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions client/src/components/Help/terms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,8 @@ galaxy:
failed: |
This state indicates there was a problem scheduling the workflow invocation. No additional datasets
or jobs will be created for this workflow invocation.
upload:
galaxyUploadUtil: |
A utility for uploading files to a Galaxy server from the command line. Use ``galaxy-upload`` to upload
file(s) to a Galaxy server, and ``galaxy-history-search``, a helper utility to find Galaxy histories
to pass to the ``galaxy-upload`` command.
11 changes: 8 additions & 3 deletions client/src/components/Upload/UploadModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import { useUserHistories } from "@/composables/userHistories";
import { useUserStore } from "@/stores/userStore";
import { wait } from "@/utils/utils";
import ExternalLink from "../ExternalLink.vue";
import HelpText from "../Help/HelpText.vue";
import UploadContainer from "./UploadContainer.vue";
const { currentUser } = storeToRefs(useUserStore());
Expand Down Expand Up @@ -89,9 +91,12 @@ defineExpose({
to <b>{{ currentHistory.name }}</b>
</span>
</h2>
<a href="https://galaxy-upload.readthedocs.io/en/latest/" target="_blank">
Check out the <code>galaxy-upload</code> util here!
</a>
<span>
<ExternalLink href="https://galaxy-upload.readthedocs.io/en/latest/"> Click here </ExternalLink>
to check out the
<HelpText uri="galaxy.upload.galaxyUploadUtil" text="galaxy-upload" />
util!
</span>
</div>
</template>
<UploadContainer
Expand Down

0 comments on commit f518ef2

Please sign in to comment.