fix: actually display tags extension
This commit is contained in:
@@ -32,9 +32,9 @@
|
|||||||
) {{self.state.noteStatus.message}}
|
) {{self.state.noteStatus.message}}
|
||||||
.desc(ng-show='self.state.noteStatus.desc') {{self.state.noteStatus.desc}}
|
.desc(ng-show='self.state.noteStatus.desc') {{self.state.noteStatus.desc}}
|
||||||
.editor-tags
|
.editor-tags
|
||||||
#note-tags-component-container(ng-if='self.activeTagsComponent')
|
#note-tags-component-container(ng-if='self.state.tagsComponent')
|
||||||
component-view.component-view(
|
component-view.component-view(
|
||||||
component-uuid='self.activeTagsComponent.uuid',
|
component-uuid='self.state.tagsComponent.uuid',
|
||||||
ng-class="{'locked' : self.noteLocked}",
|
ng-class="{'locked' : self.noteLocked}",
|
||||||
ng-style="self.noteLocked && {'pointer-events' : 'none'}",
|
ng-style="self.noteLocked && {'pointer-events' : 'none'}",
|
||||||
application='self.application'
|
application='self.application'
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
input.tags-input(
|
input.tags-input(
|
||||||
ng-blur='self.onTagsInputBlur()',
|
ng-blur='self.onTagsInputBlur()',
|
||||||
ng-disabled='self.noteLocked',
|
ng-disabled='self.noteLocked',
|
||||||
ng-if='!self.activeTagsComponent',
|
ng-if='!self.state.tagsComponent',
|
||||||
ng-keyup='$event.keyCode == 13 && $event.target.blur();',
|
ng-keyup='$event.keyCode == 13 && $event.target.blur();',
|
||||||
ng-model='self.editorValues.tagsInputValue',
|
ng-model='self.editorValues.tagsInputValue',
|
||||||
placeholder='#tags',
|
placeholder='#tags',
|
||||||
|
|||||||
Reference in New Issue
Block a user