Fix new eslint rules

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-12-28 12:52:21 +01:00
parent 44a88069db
commit e22fbb7277
15 changed files with 21 additions and 20 deletions

View File

@@ -63,7 +63,7 @@ export default {
components: {
RichText,
},
mixins: [ relativeDate ],
mixins: [relativeDate],
props: {
activity: {
type: Object,

View File

@@ -79,7 +79,7 @@ try {
export default {
name: 'AttachmentDragAndDrop',
components: { Modal },
mixins: [ attachmentUpload ],
mixins: [attachmentUpload],
props: {
cardId: {
type: Number,

View File

@@ -206,7 +206,7 @@ export default {
components: {
Actions, ActionButton, Popover, Avatar,
},
mixins: [ labelStyle ],
mixins: [labelStyle],
props: {
board: {
type: Object,

View File

@@ -38,7 +38,7 @@ import relativeDate from '../../mixins/relativeDate'
export default {
name: 'DeletedTabSidebar',
mixins: [ relativeDate ],
mixins: [relativeDate],
props: {
board: {
type: Object,

View File

@@ -71,7 +71,7 @@ export default {
},
},
watch: {
'card': {
card: {
immediate: true,
handler() {
this.loadComments()

View File

@@ -60,7 +60,7 @@ const AtMention = {
const { user, displayName } = context.props
return createElement(
'span',
{ attrs: { 'data-at-embedded': true, 'contenteditable': false } },
{ attrs: { 'data-at-embedded': true, contenteditable: false } },
[createElement(UserBubble, { props: { user, displayName }, attrs: { 'data-mention-id': user } })]
)
},
@@ -76,7 +76,7 @@ export default {
CommentForm,
RichText,
},
mixins: [ relativeDate ],
mixins: [relativeDate],
props: {
comment: {
type: Object,