Browse Source
Merge pull request #537 from ykray/patch-1
fixed typo - pluralization
pull/628/head
WeiJian Chen
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|