Skip to content

Commit

Permalink
Merge pull request #11975 from rak-phillip/bugfix/11950-ingress
Browse files Browse the repository at this point in the history
Fix event handlers for `InputWithSelect.vue`
  • Loading branch information
rak-phillip authored Sep 20, 2024
2 parents f9d6f31 + 1d75896 commit 437aef0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shell/components/form/InputWithSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ export default {
<div
:class="{ 'select-after': !selectBeforeText }"
class="input-container row"
@update:value="change"
>
<LabeledSelect
v-if="selectLabel"
Expand Down Expand Up @@ -177,6 +176,7 @@ export default {
:mode="mode"
:rules="textRules"
v-bind="$attrs"
@update:value="change"
>
<template #label>
<slot name="label" />
Expand All @@ -193,6 +193,7 @@ export default {
:disabled="isView"
:placeholder="placeholder"
autocomplete="off"
@input="change"
>
</div>
</template>
Expand Down

0 comments on commit 437aef0

Please sign in to comment.