Browse Source

Allow tabs to have tooltips

pull/14947/head
Michael Klein 2 years ago
parent
commit
7162005a70
  1. 4
      ui/packages/consul-ui/app/components/tab-nav/index.js

4
ui/packages/consul-ui/app/components/tab-nav/index.js

@ -50,15 +50,17 @@ import { hrefTo } from 'consul-ui/helpers/href-to';
export class Tab { export class Tab {
@tracked route; @tracked route;
@tracked label; @tracked label;
@tracked tooltip;
@tracked currentRouteName; @tracked currentRouteName;
constructor(opts) { constructor(opts) {
const { currentRouteName, route, label, owner } = opts; const { currentRouteName, route, label, tooltip, owner } = opts;
this.currentRouteName = currentRouteName; this.currentRouteName = currentRouteName;
this.owner = owner; this.owner = owner;
this.route = route; this.route = route;
this.label = label; this.label = label;
this.tooltip = tooltip;
} }
get selected() { get selected() {

Loading…
Cancel
Save