Skip to content

Commit 69a3f21

Browse files
committed
removed uuid from ui as dependency
1 parent 7a9ca2e commit 69a3f21

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

ui/src/app/modules/eqmac-components/components/knob/knob.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
HostBinding,
1010
ElementRef
1111
} from '@angular/core'
12-
import * as uuid from 'uuid/v4'
1312
import { UtilitiesService } from '../../services/utilities.service'
1413

1514
export interface KnobValueChangedEvent {
@@ -24,7 +23,6 @@ export interface KnobValueChangedEvent {
2423
export class KnobComponent implements OnInit {
2524
@Input() size: 'large' | 'medium' | 'small' = 'medium'
2625
@Input() showScale = true
27-
id = uuid()
2826
public _min = -1
2927
@Input() set min (newMin) { this._min = newMin; this.calculateMiddleValue() }
3028
get min () { return this._min }

0 commit comments

Comments
 (0)