Browse Source

Default category name changes from "All Schemas" to "Schemas"

pull/289/head
Sebastian 8 years ago
parent
commit
881ef45271
  1. 2
      src/Squidex/app/shared/components/schema-category.component.ts

2
src/Squidex/app/shared/components/schema-category.component.ts

@ -78,7 +78,7 @@ export class SchemaCategoryComponent implements OnInit, OnChanges {
if (changes['name']) {
if (!this.name || this.name.length === 0) {
this.displayName = 'All Schemas';
this.displayName = 'Schemas';
} else {
this.displayName = this.name;
}

Loading…
Cancel
Save