We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b25e073 + 409c308 commit 7c42f34Copy full SHA for 7c42f34
2 files changed
manifest.json
@@ -1,7 +1,7 @@
1
{
2
"name": "dev-tool",
3
"description": "a dev-tool for chrome extension",
4
- "version": "2.0.2",
+ "version": "2.0.3",
5
"manifest_version": 3,
6
"permissions": [
7
"alarms",
src/utils/go/common.js
@@ -138,6 +138,9 @@ function sqlStrToGoTemplate(str) {
138
}
139
140
function getExpValue(str) {
141
+ if (str === undefined) {
142
+ return "";
143
+ }
144
let exp = str.split("=");
145
if (exp.length >= 2) {
146
return exp[1].trim();
0 commit comments