Added user select box to achievement pages

This commit is contained in:
2026-07-21 21:03:46 +10:00
parent 3abd66001b
commit 923d9a2c3e
6 changed files with 60 additions and 1 deletions
+5
View File
@@ -9,6 +9,7 @@ import MainLayout from "@/Layouts/MainLayout.vue";
import Panel from "@/Components/FlightsGoneBy/Panels/Panel.vue";
import PanelHeader from "@/Components/FlightsGoneBy/Panels/PanelHeader.vue";
import {useUpdateSetting} from "@/Composables/useUpdateSetting";
import FollowingSelectBox from "@/Components/FlightsGoneBy/FollowingSelectBox.vue";
const {updateSetting} = useUpdateSetting()
@@ -121,6 +122,10 @@ const filteredUnlockedCount = computed(() =>
/>
</div>
</Panel>
<Panel>
<FollowingSelectBox redirect-route="profile.achievements" placeholder="View The Achievements of Someone You Follow" />
</Panel>
</div>
</ProfileLayout>
</template>