Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
scc-net
netvs
netvs-core
Commits
8e01d107
Commit
8e01d107
authored
Oct 21, 2020
by
janis.streib
🦉
Browse files
FIX: error on filter on some pages
parent
b1c885b2
Pipeline
#114898
passed with stages
in 9 minutes and 14 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
frontend/src/components/Paginator.vue
View file @
8e01d107
...
...
@@ -44,7 +44,9 @@ export default {
type
:
Function
,
default
()
{
return
function
(
item
,
term
)
{
if
(
typeof
term
===
'
string
'
)
{
term
=
term
.
toLowerCase
()
}
for
(
const
v
of
Object
.
values
(
item
))
{
if
(
typeof
v
===
'
string
'
)
{
if
(
v
.
toLowerCase
().
includes
(
term
))
{
...
...
Write
Preview
Markdown
is supported
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