@eturnity/eturnity_reusable_components 8.7.5-EPDM-12618.1 → 8.7.5
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -154,7 +154,7 @@
|
|
154
154
|
</OptionsItem>
|
155
155
|
</OptionsWrapper>
|
156
156
|
<CustomContainer
|
157
|
-
v-if="
|
157
|
+
v-if="inputText.length && allowFreeInputs"
|
158
158
|
@click="onCustomNameClick()"
|
159
159
|
>
|
160
160
|
<CustomName>{{ getCustomName }}</CustomName>
|
@@ -551,7 +551,7 @@
|
|
551
551
|
},
|
552
552
|
computed: {
|
553
553
|
getCustomName() {
|
554
|
-
return this.inputText
|
554
|
+
return this.inputText
|
555
555
|
},
|
556
556
|
theme() {
|
557
557
|
return theme
|
@@ -645,7 +645,7 @@
|
|
645
645
|
},
|
646
646
|
onCustomNameClick() {
|
647
647
|
this.wasClicked = true
|
648
|
-
this.$emit('on-custom-input-name', this.
|
648
|
+
this.$emit('on-custom-input-name', this.inputText)
|
649
649
|
this.$emit('toggle-dropdown-open', { close: true })
|
650
650
|
this.inputText = ''
|
651
651
|
},
|