|
@@ -373,10 +373,7 @@ export abstract class BaseListView<T> extends BaseView<T>{
|
|
*/
|
|
*/
|
|
add(item: T): void {
|
|
add(item: T): void {
|
|
this.items.unshift(item);
|
|
this.items.unshift(item);
|
|
-
|
|
|
|
- if (this.getItemsShown().length < this.getEndRange()) {
|
|
|
|
- this.itemsShown.unshift(item);
|
|
|
|
- }
|
|
|
|
|
|
+ this.itemsShown.unshift(item);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|