diff --git a/src-ui/src/app/components/common/input/select/select.component.html b/src-ui/src/app/components/common/input/select/select.component.html
index b5fb6f2ed..1bcdeda84 100644
--- a/src-ui/src/app/components/common/input/select/select.component.html
+++ b/src-ui/src/app/components/common/input/select/select.component.html
@@ -1,30 +1,45 @@
{{hint}}
0">
Suggestions:
diff --git a/src-ui/src/app/components/common/input/select/select.component.ts b/src-ui/src/app/components/common/input/select/select.component.ts
index 878254318..921e3606c 100644
--- a/src-ui/src/app/components/common/input/select/select.component.ts
+++ b/src-ui/src/app/components/common/input/select/select.component.ts
@@ -39,6 +39,8 @@ export class SelectComponent extends AbstractInputComponent {
public addItemRef: (name) => void
+ private _lastSearchTerm: string
+
get allowCreateNew(): boolean {
return this.createNew.observers.length > 0
}
@@ -52,7 +54,28 @@ export class SelectComponent extends AbstractInputComponent {
}
addItem(name: string) {
- this.createNew.next(name)
+ if (name) this.createNew.next(name)
+ else this.createNew.next(this._lastSearchTerm)
+ this.clearLastSearchTerm()
+ }
+
+ clickNew() {
+ this.createNew.next(this._lastSearchTerm)
+ this.clearLastSearchTerm()
+ }
+
+ clearLastSearchTerm() {
+ this._lastSearchTerm = null
+ }
+
+ onSearch($event) {
+ this._lastSearchTerm = $event.term
+ }
+
+ onBlur() {
+ setTimeout(() => {
+ this.clearLastSearchTerm()
+ }, 3000);
}
}
diff --git a/src-ui/src/app/components/common/input/tags/tags.component.html b/src-ui/src/app/components/common/input/tags/tags.component.html
index b8d4f074e..72c2cf1a5 100644
--- a/src-ui/src/app/components/common/input/tags/tags.component.html
+++ b/src-ui/src/app/components/common/input/tags/tags.component.html
@@ -1,7 +1,7 @@