Skip to content

Commit

Permalink
chore: change according to CR
Browse files Browse the repository at this point in the history
  • Loading branch information
raaymax committed Jun 19, 2024
1 parent ca8a28f commit d85118d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ui/src/builder/BuilderFieldsKeyValue.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,17 @@
<div class="formAdd">
<BuilderTemplateInput
ref="assistedKeyEl"
v-model:value="formAdd.key"
class="inputKey"
placeholder="Type a key..."
:value="formAdd.key"
@update:value="$event => (formAdd.key = $event)"

Check failure on line 51 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.11)

Replace `$event` with `($event)`

Check failure on line 51 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.10)

Replace `$event` with `($event)`

Check failure on line 51 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.9)

Replace `$event` with `($event)`

Check failure on line 51 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.11)

Replace `$event` with `($event)`

Check failure on line 51 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.10)

Replace `$event` with `($event)`
@keydown.enter="addAssistedEntry"
/>
<BuilderTemplateInput
v-model:value="formAdd.value"
class="inputValue"
placeholder="Type a value..."
:value="formAdd.key"
@update:value="$event => (formAdd.key = $event)"

Check failure on line 58 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.11)

Replace `$event` with `($event)`

Check failure on line 58 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.10)

Replace `$event` with `($event)`

Check failure on line 58 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.9)

Replace `$event` with `($event)`

Check failure on line 58 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.11)

Replace `$event` with `($event)`

Check failure on line 58 in src/ui/src/builder/BuilderFieldsKeyValue.vue

View workflow job for this annotation

GitHub Actions / build (3.10)

Replace `$event` with `($event)`
@keydown.enter="addAssistedEntry"
/>
<button @click="addAssistedEntry">
Expand Down

0 comments on commit d85118d

Please sign in to comment.