Skip to content

Commit

Permalink
fix: add icons in article details view to tab navigation
Browse files Browse the repository at this point in the history
Signed-off-by: Wolfgang <[email protected]>
  • Loading branch information
wofferl committed Nov 26, 2024
1 parent a92d6bb commit 263b8c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/feed-display/FeedItemDisplay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
</template>
</NcActionButton>
</NcActions>
<StarIcon :class="{'starred': item.starred }" @click="toggleStarred(item)" />
<EyeIcon v-if="item.unread" @click="toggleRead(item)" />
<EyeCheckIcon v-if="!item.unread" @click="toggleRead(item)" />
<CloseIcon @click="compactMode ? $emit('show-details') : clearSelected()" />
<StarIcon :class="{'starred': item.starred }" tabindex="0" @click="toggleStarred(item)" />
<EyeIcon v-if="item.unread" tabindex="0" @click="toggleRead(item)" />
<EyeCheckIcon v-if="!item.unread" tabindex="0" @click="toggleRead(item)" />
<CloseIcon tabindex="0" @click="compactMode ? $emit('show-details') : clearSelected()" />
<button v-if="compactMode"
v-shortkey="{s: ['s'], l: ['l'], i: ['i']}"
class="hidden"
Expand Down

0 comments on commit 263b8c8

Please sign in to comment.