style: Fix missing trailing commas

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2023-11-13 23:34:05 +01:00
parent 30842fa969
commit 047400e05e
9 changed files with 38 additions and 38 deletions

View File

@@ -247,7 +247,7 @@ export default {
}
}
},
true
true,
)
},
},

View File

@@ -79,7 +79,7 @@ const AtMention = {
return createElement(
'span',
{ attrs: { 'data-at-embedded': true, contenteditable: false } },
[createElement(NcUserBubble, { props: { user, displayName }, attrs: { 'data-mention-id': user } })]
[createElement(NcUserBubble, { props: { user, displayName }, attrs: { 'data-mention-id': user } })],
)
},
}

View File

@@ -260,7 +260,7 @@ export default {
this.editor.insertAtCursor(
asImage
? `<a href="${this.attachmentPreview(attachment)}"><img src="${this.attachmentPreview(attachment)}" alt="${attachment.data}" /></a>`
: `<a href="${this.attachmentPreview(attachment)}">${attachment.data}</a>`
: `<a href="${this.attachmentPreview(attachment)}">${attachment.data}</a>`,
)
return
} else {

View File

@@ -289,7 +289,7 @@ export default {
})
}
},
true
true,
)
},
actionDetails() {