Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M <patrathewhiz@gmail.com>
  • Loading branch information
enjeck committed Mar 13, 2024
1 parent 42a0986 commit b2dd259
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/shared/components/ncContextResource/ResourceForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default {
title: element.title,
emoji: element.emoji,
key: keyPrefix + element.id,
nodeType: nodeType,
nodeType,
id: (element.id).toString(),
ownerDisplayName: element.ownerDisplayName,
owner: element.ownership,
Expand Down
3 changes: 2 additions & 1 deletion src/shared/components/ncContextResource/ResourceList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<div v-for="resource in getResources" :key="resource.key" class="row">
<div class="fix-col-2">
<div style="display:flex; align-items: center;">
{{ resource.emoji }} &nbsp; {{ resource.title }} </div>
{{ resource.emoji }} &nbsp; {{ resource.title }}
</div>
</div>
<div class="fix-col-2" style="justify-content: end;">
<NcActionButton :close-after-click="true" icon="icon-delete" @click="actionDelete(resource)">
Expand Down

0 comments on commit b2dd259

Please sign in to comment.