Browse Source

Show all properties.

pull/662/head
Sebastian 5 years ago
parent
commit
fd3579bec6
  1. 2
      frontend/app/shared/services/schemas.service.ts

2
frontend/app/shared/services/schemas.service.ts

@ -178,7 +178,7 @@ export class SchemaDetailsDto extends SchemaDto {
if (source.hasOwnProperty(key) && exclude.indexOf(key) < 0 && key.indexOf('can') !== 0) { if (source.hasOwnProperty(key) && exclude.indexOf(key) < 0 && key.indexOf('can') !== 0) {
const value = source[key]; const value = source[key];
if (value) { if (!Types.isUndefined(value) && !Types.isNull(value)) {
clone[key] = value; clone[key] = value;
} }
} }

Loading…
Cancel
Save