Skip to content

Commit

Permalink
Merge pull request #16748 from hujambo-dunia/selective-bold-text
Browse files Browse the repository at this point in the history
Selective bold text
  • Loading branch information
dannon authored Sep 27, 2023
2 parents b180b79 + 5482727 commit 2c2a132
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Dataset/DatasetName.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<b-link
id="dataset-dropdown"
class="workflow-dropdown font-weight-bold p-2"
class="workflow-dropdown p-2"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false">
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/History/Content/ContentItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@keydown="onKeyDown">
<div class="p-1 cursor-pointer" draggable @dragstart="onDragStart" @dragend="onDragEnd" @click.stop="onClick">
<div class="d-flex justify-content-between">
<span class="p-1 font-weight-bold" data-description="content item header info">
<span class="p-1" data-description="content item header info">
<b-button v-if="selectable" class="selector p-0" @click.stop="$emit('update:selected', !selected)">
<icon v-if="selected" fixed-width size="lg" :icon="['far', 'check-square']" />
<icon v-else fixed-width size="lg" :icon="['far', 'square']" />
Expand Down Expand Up @@ -46,7 +46,7 @@
<icon fixed-width :icon="contentState.icon" :spin="contentState.spin" />
</span>
<span class="id hid">{{ id }}:</span>
<span class="content-title name">{{ name }}</span>
<span class="content-title name font-weight-bold">{{ name }}</span>
</span>
<span v-if="item.purged" class="align-self-start btn-group p-1">
<b-badge variant="secondary" title="This dataset has been permanently deleted">
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/Workflow/InvocationsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
:title="getStoredWorkflowNameByInstanceId(data.item.workflow_id)"
class="truncate">
<b-link href="#" @click.stop="swapRowDetails(data)">
<b>{{ getStoredWorkflowNameByInstanceId(data.item.workflow_id) }}</b>
{{ getStoredWorkflowNameByInstanceId(data.item.workflow_id) }}
</b-link>
</div>
</template>
Expand All @@ -60,7 +60,7 @@
:title="`<b>Switch to</b><br>${getHistoryNameById(data.item.history_id)}`"
class="truncate">
<b-link id="switch-to-history" href="#" @click.stop="switchHistory(data.item.history_id)">
<b>{{ getHistoryNameById(data.item.history_id) }}</b>
{{ getHistoryNameById(data.item.history_id) }}
</b-link>
</div>
</template>
Expand Down

0 comments on commit 2c2a132

Please sign in to comment.