Skip to content

Commit

Permalink
Merge pull request #2506 from nextcloud/fix/3955-Calendar_visibility_…
Browse files Browse the repository at this point in the history
…toggle_is_not_focusable_via_keyboard

Change appearance of the slot "icon" at AppNavigationItem
  • Loading branch information
GretaD authored Feb 18, 2022
2 parents 77d195a + 61752d9 commit c9c7f46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AppNavigationItem/AppNavigationItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Just set the `pinned` prop.
<!-- never show the icon over the collapsible if mobile -->
<div :class="{ 'icon-loading-small': loading, [icon]: icon && isIconShown }"
class="app-navigation-entry-icon">
<slot v-if="!loading" v-show="isIconShown" name="icon" />
<slot v-show="!loading && isIconShown" name="icon" />
</div>
<span v-if="!editingActive" class="app-navigation-entry__title" :title="title">
{{ title }}
Expand Down

0 comments on commit c9c7f46

Please sign in to comment.