We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 679b38c commit bdc681bCopy full SHA for bdc681b
1 file changed
src/app/service/service_worker/value.ts
@@ -39,7 +39,13 @@ export class ValueService {
39
if (config) {
40
Object.keys(config).forEach((tabKey) => {
41
const tab = config![tabKey];
42
+ if (!(tab instanceof Object)) {
43
+ return;
44
+ }
45
Object.keys(tab).forEach((key) => {
46
+ if (!tab[key]) {
47
48
49
// 动态变量
50
if (tab[key].bind) {
51
const bindKey = tab[key].bind!.substring(1);
0 commit comments