Skip to content

Commit

Permalink
Make sure name is represented by labeled icon even without a link
Browse files Browse the repository at this point in the history
  • Loading branch information
jonboiser committed Feb 27, 2021
1 parent 72a858a commit 10733c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
data-test="exercise-learner-link"
icon="person"
/>
<template v-else>
{{ entry.name }}
</template>
<KLabeledIcon v-else :label="entry.name" icon="person" />
</td>
<td>
<StatusSimple :status="entry.statusObj.status" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@
:to="detailLink(tableRow.id)"
icon="person"
/>
<template v-else>
{{ tableRow.name }}
</template>
<KLabeledIcon v-else :label="tableRow.name" icon="person" />
</td>
<td>
<StatusSimple :status="tableRow.statusObj.status" />
Expand Down

0 comments on commit 10733c9

Please sign in to comment.