We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e34c76 commit 23679a6Copy full SHA for 23679a6
1 file changed
src/html/Base.ts
@@ -111,10 +111,10 @@ export class Base {
111
const key = ids[ids.length - 1]
112
let _code = code
113
if (DEFAULT_INJECTCODE_ALL in this._injectCode) {
114
- _code = this.generateInjectCode(this._injectCode[DEFAULT_INJECTCODE_ALL], code)
+ _code = this.generateInjectCode(this._injectCode[DEFAULT_INJECTCODE_ALL], _code)
115
}
116
if (key in this._injectCode) {
117
- _code = this.generateInjectCode(this._injectCode[key], code)
+ _code = this.generateInjectCode(this._injectCode[key], _code)
118
119
return _code
120
0 commit comments