mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-06 18:05:20 +00:00
Fix typo
This commit is contained in:
parent
738c15bcb3
commit
5abbd00d38
@ -48,7 +48,7 @@ app.directive('wzTagFilter', function() {
|
|||||||
);
|
);
|
||||||
input.blur();
|
input.blur();
|
||||||
const term = $scope.newTag.split(':');
|
const term = $scope.newTag.split(':');
|
||||||
const obj = { name: term[0], value: term[1] };
|
const obj = { name: term[0].trim(), value: term[1].trim() };
|
||||||
const isFilter = obj.value;
|
const isFilter = obj.value;
|
||||||
if (
|
if (
|
||||||
(isFilter &&
|
(isFilter &&
|
||||||
@ -75,7 +75,7 @@ app.directive('wzTagFilter', function() {
|
|||||||
return (
|
return (
|
||||||
x.type === 'filter' &&
|
x.type === 'filter' &&
|
||||||
x.key === tag.key &&
|
x.key === tag.key &&
|
||||||
x.value.value === tag.value.value
|
x.value.value.toUpperCase() === tag.value.value.toUpperCase()
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
|
Loading…
Reference in New Issue
Block a user