fix: pageAction.show/hide should have 1 non-optional parameter in their metadata
This commit is contained in:
parent
67b3780d38
commit
0778db93ca
|
@ -300,16 +300,16 @@
|
||||||
"maxArgs": 1
|
"maxArgs": 1
|
||||||
},
|
},
|
||||||
"hide": {
|
"hide": {
|
||||||
"minArgs": 0,
|
"minArgs": 1,
|
||||||
"maxArgs": 0
|
"maxArgs": 1
|
||||||
},
|
},
|
||||||
"setIcon": {
|
"setIcon": {
|
||||||
"minArgs": 1,
|
"minArgs": 1,
|
||||||
"maxArgs": 1
|
"maxArgs": 1
|
||||||
},
|
},
|
||||||
"show": {
|
"show": {
|
||||||
"minArgs": 0,
|
"minArgs": 1,
|
||||||
"maxArgs": 0
|
"maxArgs": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
|
|
Loading…
Reference in New Issue