Commit 53129a29 authored by Paul Slaughter's avatar Paul Slaughter

Use gl-font-weight-bold instead of strong

- This isn't what strong is meant for
parent 2361f81c
...@@ -82,7 +82,7 @@ export default { ...@@ -82,7 +82,7 @@ export default {
:data-testid="`action_${action.key}`" :data-testid="`action_${action.key}`"
@click="handleItemClick(action)" @click="handleItemClick(action)"
> >
<strong>{{ action.text }}</strong> <span class="gl-font-weight-bold">{{ action.text }}</span>
</gl-dropdown-item> </gl-dropdown-item>
<gl-dropdown-divider v-if="index != actions.length - 1" :key="action.key + '_divider'" /> <gl-dropdown-divider v-if="index != actions.length - 1" :key="action.key + '_divider'" />
</template> </template>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment