diff --git a/public/app/features/dashlinks/editor.html b/public/app/features/dashlinks/editor.html index b7a59f8fbfc..471055bc8fc 100644 --- a/public/app/features/dashlinks/editor.html +++ b/public/app/features/dashlinks/editor.html @@ -40,7 +40,6 @@ Type - Tags @@ -50,9 +49,6 @@ {{link.type}} - - {{link.tags}} - @@ -130,7 +126,7 @@ - diff --git a/public/app/features/dashlinks/editor.ts b/public/app/features/dashlinks/editor.ts index 6b27d38870e..11e69933800 100644 --- a/public/app/features/dashlinks/editor.ts +++ b/public/app/features/dashlinks/editor.ts @@ -39,9 +39,9 @@ export class DashLinkEditorCtrl { this.mode = 'edit'; } - addLink(type, tags) { - this.dashboard.links.push({ type: type, tags: tags, icon: 'external link' }); - this.dashboard.updateSubmenuVisibility(); + addLink(type) { + this.dashboard.links.push({ type: type, icon: 'external link' }); + //this.dashboard.updateSubmenuVisibility(); this.updated(); this.mode = 'list'; } @@ -61,7 +61,7 @@ export class DashLinkEditorCtrl { deleteLink(index) { this.dashboard.links.splice(index, 1); - this.dashboard.updateSubmenuVisibility(); + //this.dashboard.updateSubmenuVisibility(); this.updated(); } }