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

tooltip rendering bug

This commit is contained in:
Harvey Kandola 2017-11-27 16:17:17 +00:00
parent 1f0fc844a8
commit 533a0f094e
4 changed files with 42 additions and 3 deletions

View file

@ -130,11 +130,13 @@ export default Component.extend(NotifierMixin, TooltipMixin, DropdownMixin, {
onEdit(id) {
this.setEdit(id, true);
this.removeTooltips();
},
onEditCancel(id) {
this.setEdit(id, false);
this.load();
this.renderTooltips();
},
onSave(id) {
@ -150,6 +152,8 @@ export default Component.extend(NotifierMixin, TooltipMixin, DropdownMixin, {
this.get('categoryService').save(cat).then(() => {
this.load();
});
this.renderTooltips();
},
onShowAccessPicker(catId) {