We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a9ca2e commit 69a3f21Copy full SHA for 69a3f21
1 file changed
ui/src/app/modules/eqmac-components/components/knob/knob.component.ts
@@ -9,7 +9,6 @@ import {
9
HostBinding,
10
ElementRef
11
} from '@angular/core'
12
-import * as uuid from 'uuid/v4'
13
import { UtilitiesService } from '../../services/utilities.service'
14
15
export interface KnobValueChangedEvent {
@@ -24,7 +23,6 @@ export interface KnobValueChangedEvent {
24
23
export class KnobComponent implements OnInit {
25
@Input() size: 'large' | 'medium' | 'small' = 'medium'
26
@Input() showScale = true
27
- id = uuid()
28
public _min = -1
29
@Input() set min (newMin) { this._min = newMin; this.calculateMiddleValue() }
30
get min () { return this._min }
0 commit comments