Skip to content

Commit

Permalink
More consistent icon for object store selection.
Browse files Browse the repository at this point in the history
I had started by using fa-database everywhere but then I implemented the user selection piece and that icon was already used for custom DB keys and then David implemented the storage management functionality and so that icon couldn't be used in the history either. This I think switches everything else over to the now more consitent fa-hdd.
  • Loading branch information
jmchilton committed Mar 2, 2023
1 parent c40672a commit 9964d4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Tool/ToolCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function onUpdatePreferredObjectStoreId(selectedToolPreferredObjectStoreId) {
size="sm"
class="float-right"
@click="onShowObjectStoreSelect">
<span class="fa fa-database" />
<span class="fa fa-hdd" />
</b-button>
<ToolTargetPreferredObjectStorePopover
v-if="allowObjectStoreSelection"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class="workflow-storage-indicator workflow-storage-indicator-primary"
v-bind="buttonProps"
@click="showPreferredObjectStoreModal = true">
<span class="fa fa-database" />
<span class="fa fa-hdd" />
</b-button>
<WorkflowTargetPreferredObjectStorePopover
target="workflow-storage-indicator-primary"
Expand All @@ -26,7 +26,7 @@
v-bind="buttonProps"
class="workflow-storage-indicator workflow-storage-indicator-intermediate"
@click="showIntermediatePreferredObjectStoreModal = true">
<span class="fa fa-database" />
<span class="fa fa-hdd" />
</b-button>
<WorkflowTargetPreferredObjectStorePopover
v-if="splitObjectStore"
Expand Down

0 comments on commit 9964d4d

Please sign in to comment.