Skip to content

Commit

Permalink
fix: actually display tags extension
Browse files Browse the repository at this point in the history
  • Loading branch information
arielsvg committed Sep 7, 2020
1 parent a5a4200 commit 405ac65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/assets/javascripts/views/editor/editor-view.pug
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@
) {{self.state.noteStatus.message}}
.desc(ng-show='self.state.noteStatus.desc') {{self.state.noteStatus.desc}}
.editor-tags
#note-tags-component-container(ng-if='self.activeTagsComponent')
#note-tags-component-container(ng-if='self.state.tagsComponent')
component-view.component-view(
component-uuid='self.activeTagsComponent.uuid',
component-uuid='self.state.tagsComponent.uuid',
ng-class="{'locked' : self.noteLocked}",
ng-style="self.noteLocked && {'pointer-events' : 'none'}",
application='self.application'
)
input.tags-input(
ng-blur='self.onTagsInputBlur()',
ng-disabled='self.noteLocked',
ng-if='!self.activeTagsComponent',
ng-if='!self.state.tagsComponent',
ng-keyup='$event.keyCode == 13 && $event.target.blur();',
ng-model='self.editorValues.tagsInputValue',
placeholder='#tags',
Expand Down

0 comments on commit 405ac65

Please sign in to comment.