We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c14eca1 commit 01e0d34Copy full SHA for 01e0d34
2 files changed
ui/src/app/components/options/options.component.html
@@ -102,6 +102,7 @@
102
<eqm-value-screen *ngIf="option.type === 'value-screen'"
103
[disabled]="!!option.isEnabled && option.isEnabled() === false"
104
(click)="option.clicked && option.clicked()"
105
+ [eqmTooltip]="option.tooltip"
106
>
107
{{option.value}}
108
</eqm-value-screen>
ui/src/app/components/options/options.component.ts
@@ -111,6 +111,7 @@ export interface SkeuomorphSliderOption extends SliderOption {
111
export interface ValueScreenOption extends BaseOptions {
112
type: 'value-screen'
113
value: string
114
+ tooltip?: string
115
clicked?: () => any
116
}
117
0 commit comments