fix: disable virtual scroll on notification page (#1037)

This commit is contained in:
Michel EDIGHOFFER 2023-01-13 00:05:09 +01:00 committed by GitHub
parent 1e538cb8cd
commit 7f4a5587d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ const { paginator, stream } = defineProps<{
stream?: Promise<WsEvents> stream?: Promise<WsEvents>
}>() }>()
const virtualScroller = $(useFeatureFlag('experimentalVirtualScroller')) const virtualScroller = false // TODO: fix flickering issue with virtual scroll
const groupCapacity = Number.MAX_VALUE // No limit const groupCapacity = Number.MAX_VALUE // No limit