You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
When I applied the webpack config I was getting this error about:
TypeError: Cannot read property 'attrToRemove' of undefined at ViewCompiler._compileElement (webpack-internal:///./node_modules/aurelia-templating/dist/native-modules/aurelia-templating.js:3156:26)
On debugging the code it was failing when trying to work with virtual-repeat.for.
To fix I had to apply .plugin(PLATFORM.moduleName('aurelia-ui-virtualization')); //<-- add this for it to work.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I applied the webpack config I was getting this error about:
TypeError: Cannot read property 'attrToRemove' of undefined at ViewCompiler._compileElement (webpack-internal:///./node_modules/aurelia-templating/dist/native-modules/aurelia-templating.js:3156:26)
On debugging the code it was failing when trying to work with
virtual-repeat.for
.To fix I had to apply
.plugin(PLATFORM.moduleName('aurelia-ui-virtualization')); //<-- add this
for it to work.The text was updated successfully, but these errors were encountered: