run prettier (#7172)

This commit is contained in:
dblythy
2021-02-12 20:18:49 +11:00
committed by GitHub
parent dc1133d355
commit e53b6c2f87
5 changed files with 28 additions and 23 deletions

View File

@@ -100,7 +100,10 @@ function RestQuery(
for (var option in restOptions) {
switch (option) {
case 'keys': {
const keys = restOptions.keys.split(',').filter(key => key.length > 0).concat(AlwaysSelectedKeys);
const keys = restOptions.keys
.split(',')
.filter(key => key.length > 0)
.concat(AlwaysSelectedKeys);
this.keys = Array.from(new Set(keys));
break;
}