Skip to content

Commit 4b6e985

Browse files
committed
Polish contribution
1 parent 40d8c1d commit 4b6e985

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-admin-server-ui/src/main/frontend/views/instances/env

1 file changed

+1
-1
lines changed

spring-boot-admin-server-ui/src/main/frontend/views/instances/env/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
import sbaEnvManager from './env-manager';
7777
7878
const filterProperty = (needle) => (property, name) => {
79-
return name.toString().toLowerCase().includes(needle) || (property.hasOwnProperty('value') && property.value.toString().toLowerCase().includes(needle));
79+
return name.toString().toLowerCase().includes(needle) || (property.value && property.value.toString().toLowerCase().includes(needle));
8080
};
8181
const filterProperties = (needle, properties) => pickBy(properties, filterProperty(needle));
8282
const filterPropertySource = (needle) => (propertySource) => {

0 commit comments

Comments
 (0)