Bart van den Burg

Results 11 comments of Bart van den Burg

there is already an issue for this: https://github.com/fgnass/domino/issues/165

i'm having issues with this too. I'm using `[style.--color]="item.color"`, and it fails with the same error @intellix mentioned.

I ended up _not_ using nested routes. Instead, each of my pages is wrapped within a component that renders the action bar and handles the side drawer. The back button...

@hackerunet that was our solution in the end as well. Rendering the action bar and side drawer in each and every page as I described on Dec 1st proved to...

I just ran into the same issue. - open the app - switch to the settings app, find your app, change a permission - at this moment it already froze,...

Our product id's are composite (id and brandId), so we virtually always have to group by multiple fields, when we are grouping.

I have the same issue. Had to convert ```typescript asset .createReadStream() .pipe(res); ``` into ```typescript asset .createReadStream() .on('error', function () { res.sendStatus(404); }) .pipe(res); ``` to prevent my app from...

any workarounds? Adding `"type": "module"` to `node_modules/@datorama/akita/package.json` doesn't help.