Skip to content

Commit

Permalink
Fixup DatasetStorage display for missing name.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Oct 9, 2020
1 parent 7dd6297 commit be09996
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@
This data is stored in a Galaxy ObjectStore named <b>{{ storageInfo.name }}</b
>.
</p>
<p v-if="storageInfo.object_store_id">
<p v-else-if="storageInfo.object_store_id">
This data is stored in a Galaxy ObjectStore with id <b>{{ storageInfo.object_store_id }}</b
>.
</p>
<p v-else>
This data is stored in the default configured Galaxy ObjectStore.
</p>
<div v-html="descriptionRendered"></div>
</div>
</div>
Expand Down

0 comments on commit be09996

Please sign in to comment.