Skip to content

Commit 35627df

Browse files
use GModal for history export job
1 parent 05c6bfd commit 35627df

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

client/src/components/HistoryExport/ExportLink.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
title="Information about when the history export was generated is included in the job details. Additionally, if there are issues with export, the job details may help figure out the underlying problem or communicate issues to your Galaxy administrator.">
1111
(<b-link class="show-job-link" href="#" @click="showDetails">view job details</b-link>)
1212
</i>
13-
<BModal v-model="details" modal-class="job-information-modal" scrollable ok-only hide-header>
13+
<GModal title="History Export Job" size="medium" :show.sync="details" data-description="job information modal">
1414
<JobInformation :job-id="historyExport.job_id" :include-times="true" />
15-
</BModal>
15+
</GModal>
1616
</span>
1717
</template>
1818

1919
<script>
2020
import { faLink } from "@fortawesome/free-solid-svg-icons";
2121
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
22-
import { BModal } from "bootstrap-vue";
2322
2423
import { copy } from "@/utils/clipboard";
2524
25+
import GModal from "../BaseComponents/GModal.vue";
2626
import JobInformation from "@/components/JobInformation/JobInformation.vue";
2727
2828
export default {
29-
components: { BModal, JobInformation, FontAwesomeIcon },
29+
components: { GModal, JobInformation, FontAwesomeIcon },
3030
props: {
3131
historyExport: {
3232
type: Object,

client/src/utils/navigation/navigation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ history_export:
562562
copy_export_link: '.copy-export-link'
563563
show_job_link: '.show-job-link'
564564
job_table: '.info_data_table'
565-
job_table_ok: '.job-information-modal .g-modal-close-button'
565+
job_table_ok: '[data-description="job information modal"] .g-modal-close-button'
566566
tab_export_to_file: '.tab-export-to-file'
567567
directory_input: '.directory-form-input'
568568
name_input: '.export-to-remote-file #name'

0 commit comments

Comments
 (0)