We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3e30fe commit 3984b50Copy full SHA for 3984b50
src/core-tabs/tab-navigation/index.ios.ts
@@ -529,7 +529,9 @@ export abstract class TabNavigation<
529
}
530
531
public onItemsChanged(oldItems: TabContentItem[], newItems: TabContentItem[]): void {
532
- this.mNeedsCacheUpdate = true;
+ if (this.isLoaded) {
533
+ this.mNeedsCacheUpdate = true;
534
+ }
535
super.onItemsChanged(oldItems, newItems);
536
if (oldItems) {
537
if (!this.mCanSelectItem) {
0 commit comments