forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support preselecting a file source in RDM export
- Loading branch information
Showing
3 changed files
with
65 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
client/src/components/History/Export/RDMCredentialsInfo.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<script setup lang="ts"> | ||
import { BAlert } from "bootstrap-vue"; | ||
import { RouterLink } from "vue-router"; | ||
interface Props { | ||
selectedRepository?: string; | ||
what?: string; | ||
} | ||
withDefaults(defineProps<Props>(), { | ||
selectedRepository: "the selected repository", | ||
what: "file", | ||
}); | ||
</script> | ||
|
||
<template> | ||
<BAlert show variant="info"> | ||
You may need to setup your credentials for {{ selectedRepository }} in your | ||
<RouterLink to="/user/information" target="_blank">preferences page</RouterLink> to be able to export. You can | ||
also define some default options for the export in those settings, like the public name you want to associate | ||
with your records or whether you want to publish them immediately or keep them as drafts after export. | ||
</BAlert> | ||
</template> |