diff --git a/ui/src/app/components/options/options.component.ts b/ui/src/app/components/options/options.component.ts
index 3b18ab4..d787148 100644
--- a/ui/src/app/components/options/options.component.ts
+++ b/ui/src/app/components/options/options.component.ts
@@ -86,7 +86,7 @@ export interface InputOption extends BaseOptions {
interface SliderOption extends BaseOptions {
value: number
min?: number
- midle?: number
+ middle?: number
max?: number
animationDuration?: number
animationFps?: number
diff --git a/ui/src/app/modules/eqmac-components/components/dropdown/dropdown.component.html b/ui/src/app/modules/eqmac-components/components/dropdown/dropdown.component.html
index 54d3b8c..a897177 100644
--- a/ui/src/app/modules/eqmac-components/components/dropdown/dropdown.component.html
+++ b/ui/src/app/modules/eqmac-components/components/dropdown/dropdown.component.html
@@ -10,9 +10,9 @@
-
+
-
+
diff --git a/ui/src/app/modules/eqmac-components/components/dropdown/dropdown.component.ts b/ui/src/app/modules/eqmac-components/components/dropdown/dropdown.component.ts
index a758452..228dcb1 100644
--- a/ui/src/app/modules/eqmac-components/components/dropdown/dropdown.component.ts
+++ b/ui/src/app/modules/eqmac-components/components/dropdown/dropdown.component.ts
@@ -33,6 +33,7 @@ export class DropdownComponent implements OnInit {
@Output() refChanged = new EventEmitter()
@HostBinding('class.disabled') @Input() disabled = false
@Input() selectedItem = null
+ @Output() selectedItemChange = new EventEmitter()
@Input() labelParam = 'text'
@Input() numberOfVisibleItems = 6
@Input() placeholder = 'Select item'
@@ -123,6 +124,7 @@ export class DropdownComponent implements OnInit {
selectItem (item) {
this.selectedItem = item
+ this.selectedItemChange.emit(item)
this.itemSelected.emit(item)
if (this.closeOnSelect) {
this.close()
diff --git a/ui/src/app/modules/eqmac-components/components/question/question.component.ts b/ui/src/app/modules/eqmac-components/components/question/question.component.ts
index 82a14ff..1528d32 100644
--- a/ui/src/app/modules/eqmac-components/components/question/question.component.ts
+++ b/ui/src/app/modules/eqmac-components/components/question/question.component.ts
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core'
@Component({
selector: 'eqm-question',
- template: '',
+ template: '',
styles: [ ':host { height: 12px; width: 12px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background-color: #2c2c2e; }' ]
})
export class QuestionComponent implements OnInit {
diff --git a/ui/src/app/sections/effects/equalizers/equalizers.component.html b/ui/src/app/sections/effects/equalizers/equalizers.component.html
index 48f8222..e684270 100644
--- a/ui/src/app/sections/effects/equalizers/equalizers.component.html
+++ b/ui/src/app/sections/effects/equalizers/equalizers.component.html
@@ -25,7 +25,7 @@
[disabled]="!enabled"
*ngIf="activeEqualizer && activeEqualizer.settings.length"
eqmTooltip="Settings" eqmTooltipPositionSide="bottom">
-
+
diff --git a/ui/src/app/sections/header/header.component.html b/ui/src/app/sections/header/header.component.html
index 87be7df..c43fe00 100644
--- a/ui/src/app/sections/header/header.component.html
+++ b/ui/src/app/sections/header/header.component.html
@@ -4,16 +4,16 @@
(mouseenter)="setShowBoolean('showLeftIcons', true)" (mouseleave)="setShowBoolean('showLeftIcons', false)"
>
-
+
-
+
-
+
eqMac
@@ -23,17 +23,17 @@
-
+ eqmTooltip="Help" eqmTooltipPositionSide="bottom" [eqmTooltipDelay]="100">
+
-
+ eqmTooltip="Settings" eqmTooltipPositionSide="bottom" [eqmTooltipDelay]="100">
+
-
+
diff --git a/ui/src/app/sections/help/help.component.ts b/ui/src/app/sections/help/help.component.ts
index c5e3d82..ea9f722 100644
--- a/ui/src/app/sections/help/help.component.ts
+++ b/ui/src/app/sections/help/help.component.ts
@@ -3,7 +3,7 @@ import { Options } from 'src/app/components/options/options.component'
import { ApplicationService, MacInfo } from 'src/app/services/app.service'
import { ConstantsService } from 'src/app/services/constants.service'
import { version } from '../../../../package.json'
-import { UIService } from '../../services/ui.service.js'
+import { UIService } from '../../services/ui.service'
@Component({
selector: 'eqm-help',
diff --git a/ui/src/app/sections/source/file/file.component.html b/ui/src/app/sections/source/file/file.component.html
index 314ab83..bf1bfb4 100644
--- a/ui/src/app/sections/source/file/file.component.html
+++ b/ui/src/app/sections/source/file/file.component.html
@@ -1,6 +1,6 @@
-
+
{{meta.name || 'Please open an Audio File.' }}
@@ -10,7 +10,7 @@
-
+
\ No newline at end of file