Skip to content

Commit 750afd4

Browse files
authored
Merge pull request #47 from lionel-bijaoui/LB_small_fix
small fix
2 parents dcfde9f + 04a71a0 commit 750afd4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
} else if (/null/.test(match)) {
1919
cls = "null";
2020
}
21-
return "<span class="" + cls + "">" + match + "</span>";
21+
return "<span class=" + cls + ">" + match + "</span>";
2222
});
2323
}
2424
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"e2e": "node test/e2e/runner.js",
1818
"pretest": "npm run lint",
1919
"test": "npm run unit",
20-
"ci": "karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots"
20+
"ci": "karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots --port=9877"
2121
},
2222
"keywords": [
2323
"vue",

0 commit comments

Comments
 (0)