1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 23:59:47 +02:00

Resolve lint issues

This commit is contained in:
Harvey Kandola 2018-02-08 17:23:17 +00:00
parent b5aef1dc87
commit 26de0551ae
2 changed files with 1 additions and 3 deletions

View file

@ -11,7 +11,6 @@
import $ from 'jquery';
import { notEmpty, empty } from '@ember/object/computed';
import { schedule } from '@ember/runloop';
import { inject as service } from '@ember/service';
import { computed } from '@ember/object';
import Component from '@ember/component';

View file

@ -11,7 +11,7 @@
import { schedule } from '@ember/runloop';
import { inject as service } from '@ember/service';
import { computed, observer } from '@ember/object';
import { computed } from '@ember/object';
import Component from '@ember/component';
export default Component.extend({
@ -22,7 +22,6 @@ export default Component.extend({
diagramText: '',
diagramPreview: null,
previewButtonCaption: 'Preview',
editorId: computed('page', function () {
let page = this.get('page');
return `plantuml-editor-${page.id}`;