Skip to content

Commit

Permalink
fix: mistake in word[WTEL-4310]
Browse files Browse the repository at this point in the history
  • Loading branch information
Lera24 committed Mar 13, 2024
1 parent 9400fb5 commit 9e7e5c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/wt-tags-input/wt-tags-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
:label="selectOptionLabel"
:loading="false"
:model-value="selectValue"
:multiple="multiply"
:multiple="multiple"
:options="selectOptions"
:placeholder="placeholder || label"
:taggable="taggable"
Expand Down Expand Up @@ -140,9 +140,9 @@ export default {
defaultOptionLabel: 'label',
// [https://webitel.atlassian.net/browse/WTEL-4310]
// Multiply value is needed in TaggableMixin mixin to correctly add custom values
// Multiple value is needed in TaggableMixin mixin to correctly add custom values
multiply: true,
multiple: true,
}),
methods: {
getTagOptionLabel({ optionLabel, option }) {
Expand Down

0 comments on commit 9e7e5c2

Please sign in to comment.