linting
This commit is contained in:
parent
592e23e984
commit
e5cf8bd564
|
@ -19,7 +19,9 @@ export default class TopicDraftsDropdown extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
get otherDraftsCount() {
|
get otherDraftsCount() {
|
||||||
return this.args.otherDrafts > 0 ? `+${this.args.otherDrafts} other drafts` : "";
|
return this.args.otherDrafts > 0
|
||||||
|
? `+${this.args.otherDrafts} other drafts`
|
||||||
|
: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
|
@ -47,7 +49,7 @@ export default class TopicDraftsDropdown extends Component {
|
||||||
draft,
|
draft,
|
||||||
draftKey: draft.draft_key,
|
draftKey: draft.draft_key,
|
||||||
draftSequence: draft.sequence,
|
draftSequence: draft.sequence,
|
||||||
...draft.data
|
...draft.data,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue