Qian Chen
Qian Chen
Try this: ```typescript add() { this.items.push('NEW - ' + this.items.length); this.items = [...this.items]; } ``` https://stackblitz.com/edit/angular-hsr4tz-mz26wq
@Gil-Epshtain agreed! @crisbeto any chance to get any update about this fix? Thanks.
@Gil-Epshtain from my experience, this workaround is actually not bad, I mean, performance wise. The selling point of the virtual scroll is to swap in/swap out rendered items from the...
> However, you need to remember that "virtual-scroll" directive purpose is to make an extremely long (thousands items or even more) list to be more smooth. This statement is true....
@wernert there is a trade off. Change detection is expensive, even so for a list. I think your best bet would be to use the `[...someArray]`.
I did some more test, it works without any problem. And I think I know my problem now. In my code, whenever a directory is created in the watched directory,...
I can reproduce this problem with the following code: ``` go package main import ( "log" "github.com/howeyc/fsnotify" ) func main() { watcher, err := fsnotify.NewWatcher() if err != nil {...
I found the same problem on Linux, at least once. When I touch a lot of new files, one is missing. ``` $ touch a b c d e f...
I'm sorry for a late reply. I will check it and update here.
Thanks for the PR. > * replaced let with const where possible This project started before let was introduced to js, then I replaced most, if not all `var`s to...