feat: enable virtual scroller by default (#892)
This commit is contained in:
parent
6a6e6bfb74
commit
efe7d639c1
3 changed files with 5 additions and 5 deletions
|
@ -2,14 +2,14 @@ import type { Ref } from 'vue'
|
|||
import { userSettings } from '.'
|
||||
|
||||
export interface FeatureFlags {
|
||||
experimentalVirtualScroll: boolean
|
||||
experimentalVirtualScroller: boolean
|
||||
experimentalGitHubCards: boolean
|
||||
experimentalUserPicker: boolean
|
||||
}
|
||||
export type FeatureFlagsMap = Record<string, FeatureFlags>
|
||||
|
||||
const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
|
||||
experimentalVirtualScroll: false,
|
||||
experimentalVirtualScroller: true,
|
||||
experimentalGitHubCards: true,
|
||||
experimentalUserPicker: true,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue