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
|
||||
},
|
||||
"hide": {
|
||||
"minArgs": 0,
|
||||
"maxArgs": 0
|
||||
"minArgs": 1,
|
||||
"maxArgs": 1
|
||||
},
|
||||
"setIcon": {
|
||||
"minArgs": 1,
|
||||
"maxArgs": 1
|
||||
},
|
||||
"show": {
|
||||
"minArgs": 0,
|
||||
"maxArgs": 0
|
||||
"minArgs": 1,
|
||||
"maxArgs": 1
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
|
|
Loading…
Reference in New Issue