Skip to content

Commit

Permalink
NcAppSidebar: Fix examples with invalid prop type
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux committed Apr 3, 2023
1 parent 6ea6029 commit e6821e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/NcAppSidebar/NcAppSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -158,19 +158,19 @@ export default {
<NcAppSidebar
title="cat-picture.jpg"
subtitle="last edited 3 weeks ago">
<NcAppSidebarTab name="Search" id="search-tab" order="3">
<NcAppSidebarTab name="Search" id="search-tab" :order="3">
<template #icon>
<Magnify :size="20" />
</template>
Search tab content
</NcAppSidebarTab>
<NcAppSidebarTab name="Settings" id="settings-tab" order="2">
<NcAppSidebarTab name="Settings" id="settings-tab" :order="2">
<template #icon>
<Cog :size="20" />
</template>
Settings tab content
</NcAppSidebarTab>
<NcAppSidebarTab name="Sharing" id="share-tab" order="1">
<NcAppSidebarTab name="Sharing" id="share-tab" :order="1">
<template #icon>
<ShareVariant :size="20" />
</template>
Expand Down

0 comments on commit e6821e8

Please sign in to comment.