Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vue-unistra
formbuilder
Commits
3bbbdab1
Commit
3bbbdab1
authored
Oct 15, 2021
by
MARCO Jonathan
Browse files
🔀
Merge branch 'hotfix/3.0.24'
parents
1975babb
01a38c35
Pipeline
#62964
passed with stage
in 13 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
package.json
View file @
3bbbdab1
{
"name"
:
"@vue-unistra/formbuilder"
,
"version"
:
"3.0.2
3
"
,
"version"
:
"3.0.2
4
"
,
"main"
:
"dist/index.js"
,
"files"
:
[
"dist/*"
,
...
...
src/components/formbuilder/settings/tabs/data/UsfTabDataInput/UsfTabDataInput.vue
View file @
3bbbdab1
...
...
@@ -335,16 +335,16 @@ export default Vue.extend({
if
(
search
===
null
)
return
true
;
if
(
item
.
displayedBy
!==
undefined
&&
item
.
displayedBy
.
length
)
{
return
itemLabel
.
includes
(
search
)
||
item
.
displayedBy
.
some
((
optionId
)
=>
{
return
itemLabel
.
toLowerCase
().
includes
(
search
)
||
item
.
displayedBy
.
some
((
optionId
)
=>
{
const
option
:
Option
|
undefined
=
this
.
getOption
(
optionId
);
if
(
option
)
{
return
optionId
.
includes
(
search
)
||
option
.
label
.
includes
(
search
);
return
optionId
.
toLowerCase
().
includes
(
search
)
||
option
.
label
.
toLowerCase
().
includes
(
search
);
}
return
false
;
}
);
}
return
itemLabel
.
includes
(
search
)
return
itemLabel
.
toLowerCase
().
includes
(
search
)
}
,
getOption
(
id
)
{
return
this
.
$store
.
getters
[
'
form/getOptionByIdOrValue
'
](
id
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment