Skip to content

Commit

Permalink
cutter improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
thisismattmiller committed Aug 22, 2024
1 parent f6a0b9e commit 1e3263d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/panels/edit/modals/ShelfListing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
<tbody>

<template v-for="r in results">
<template v-if="r.title != 'Would Appear Here'">
<template v-if="r.title.trim() != 'Class would appear here.'">
<tr>
<td>{{ r.term }}</td>
<td>{{ r.creator }}</td>
Expand All @@ -261,7 +261,7 @@
</tr>
</template>

<template v-if="r.title == 'Would Appear Here'">
<template v-if="r.title.trim() == 'Class would appear here.'">
<tr style="background-color: yellow;">
<td>{{ r.term }}</td>
<td>{{ r.creator }}</td>
Expand Down

0 comments on commit 1e3263d

Please sign in to comment.