Skip to content

Commit

Permalink
Improve dialog message while waiting for rule builder job.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed May 14, 2018
1 parent 19c5c73 commit 8be2da0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/galaxy/scripts/components/RuleCollectionBuilder.vue
Expand Up @@ -364,8 +364,11 @@
</rule-modal-footer>
</state-div>
<state-div v-else-if="state == 'wait'">
<rule-modal-header>
{{ l("Galaxy is waiting for collection creation, this dialog will close when this is complete.") }}
<rule-modal-header v-if="importType == 'datasets'">
{{ l("Datasets submitted to Galaxy for creation, this dialog will close when dataset creation is complete. You may close this dialog at any time, but you will not be informed of errors with dataset creation and you may have to refresh your history manually to view new datasets once complete.") }}
</rule-modal-header>
<rule-modal-header v-else-if="importType == 'collections'">
{{ l("Galaxy is waiting for collection creation, this dialog will close when this is complete. You may close this dialog at any time, but you will not be informed of errors with collection creation and you may have to refresh your history manually to view new collections once complete.") }}
</rule-modal-header>
<rule-modal-footer>
<b-button @click="cancel" class="creator-cancel-btn" tabindex="-1">
Expand Down

0 comments on commit 8be2da0

Please sign in to comment.