Tsz Lam

Results 9 comments of Tsz Lam

Is there any workaround for this issue? Seems like there exists a [PR](https://github.com/inversify/inversify-binding-decorators/pull/151) already. Anything we can help?

sorry for late reply, you need to set alias to "jQuery-QueryBuilder" on the webpack config. e.g. ```js { resolve: { alias: { "query-builder": "jQuery-QueryBuilder" } } } ```

thanks for the solution. this works: ```js this.builder.off("rulesChanged.queryBuilder"); this.builder.queryBuilder("setRules", rules); this.builder.on("rulesChanged.queryBuilder", (e, level) => {...}); ```

another workaround is adding a settimeout to cause the getRules to run async. ```js $('#queryBuilder').on('rulesChanged.queryBuilder', function(evt) { setTimeout(() => { // get rules.. }, 0) } ```

Hi, I have faced a similar situation, but the input data is of html type. To solve it, I have created a HtmlControlReplacer to parse the html content to the...

> I _think_ I ran into the same issue: > > created a new vite-vanilla-typescript project, added `npm i bootstrap-icons` and have these files: > > ``` > ├── src...