2022-11-28 22:57:27 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
const featureFlags = useFeatureFlags()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-04 14:17:02 +00:00
|
|
|
<CommonDropdown placement="top">
|
|
|
|
<slot />
|
|
|
|
<template #popper>
|
|
|
|
<CommonDropdownItem
|
|
|
|
:checked="featureFlags.experimentalVirtualScroll"
|
|
|
|
@click="toggleFeatureFlag('experimentalVirtualScroll')"
|
|
|
|
>
|
|
|
|
{{ $t('feature_flag.virtual_scroll') }}
|
|
|
|
</CommonDropdownItem>
|
2022-12-06 11:07:17 +00:00
|
|
|
<CommonDropdownItem
|
|
|
|
:checked="featureFlags.experimentalAvatarOnAvatar"
|
|
|
|
@click="toggleFeatureFlag('experimentalAvatarOnAvatar')"
|
|
|
|
>
|
|
|
|
{{ $t('feature_flag.avatar_on_avatar') }}
|
|
|
|
</CommonDropdownItem>
|
2022-12-04 14:17:02 +00:00
|
|
|
</template>
|
|
|
|
</CommonDropdown>
|
2022-11-28 22:57:27 +00:00
|
|
|
</template>
|