Browse Source

Merge pull request #537 from ykray/patch-1

fixed typo - pluralization
pull/628/head
WeiJian Chen 3 years ago
committed by GitHub
parent
commit
8bba487401
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/model/main/viewGroup.ts

2
src/model/main/viewGroup.ts

@ -32,7 +32,7 @@ export class ViewGroup extends Node {
return new ViewNode(table, this);
});
if (tableNodes.length == 0) {
tableNodes = [new InfoNode("This schema has no view")];
tableNodes = [new InfoNode("This schema has no views")];
}
this.setChildCache(tableNodes);
return tableNodes;

Loading…
Cancel
Save