Allow tabs to have tooltips

This commit is contained in:
Michael Klein 2022-10-10 11:05:59 +02:00
parent 92ddea3627
commit a712142ec0
1 changed files with 3 additions and 1 deletions

View File

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