Skip to content

Commit

Permalink
Fix unknown Actions and ActionButton component references
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <chrng8@gmail.com>
  • Loading branch information
Pytal committed Nov 23, 2022
1 parent 24092ef commit b700ce6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/NcListItemIcon/NcListItemIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ It might be used for list rendering or within the multiselect for example
### With actions
```vue
<NcListItemIcon title="Test user 1" subtitle="callmetest@domain.com">
<Actions>
<ActionButton icon="icon-edit" @click="alert('Edit')">Edit</ActionButton>
<ActionButton icon="icon-delete" @click="alert('Delete')">Delete</ActionButton>
</Actions>
<NcActions>
<NcActionButton icon="icon-edit" @click="alert('Edit')">Edit</NcActionButton>
<NcActionButton icon="icon-delete" @click="alert('Delete')">Delete</NcActionButton>
</NcActions>
</NcListItemIcon>
```
</docs>
Expand Down

0 comments on commit b700ce6

Please sign in to comment.