Skip to content

Commit

Permalink
In History panel, removed bold-text from Labels (e.g. enumerated step…
Browse files Browse the repository at this point in the history
…s) because bold-text already used in Label Details (e.g. filenames) [moderate priority]
  • Loading branch information
hujambo-dunia committed Sep 26, 2023
1 parent 6114bef commit b85970c
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit b85970c

Please sign in to comment.