@@ -138,8 +138,8 @@ class _Question(BaseModel):
|
|||||||
type: str
|
type: str
|
||||||
question: str
|
question: str
|
||||||
time: int
|
time: int
|
||||||
points: bool
|
points: bool | None = None
|
||||||
pointsMultiplier: int
|
pointsMultiplier: int | None = None
|
||||||
choices: list[_Choice]
|
choices: list[_Choice]
|
||||||
image: str | None = None
|
image: str | None = None
|
||||||
imageMetadata: _ImageMetadata | None = None
|
imageMetadata: _ImageMetadata | None = None
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ SPDX-License-Identifier: MPL-2.0
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import AudioPlayer from '$lib/play/audio_player.svelte';
|
// import AudioPlayer from '$lib/play/audio_player.svelte';
|
||||||
import ControllerCodeDisplay from '$lib/components/controller/code.svelte';
|
import ControllerCodeDisplay from '$lib/components/controller/code.svelte';
|
||||||
import { getLocalization } from '$lib/i18n';
|
import { getLocalization } from '$lib/i18n';
|
||||||
import GrayButton from '$lib/components/buttons/gray.svelte';
|
import GrayButton from '$lib/components/buttons/gray.svelte';
|
||||||
@@ -42,8 +42,9 @@ SPDX-License-Identifier: MPL-2.0
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="w-full h-full">
|
<div class="w-full h-full">
|
||||||
<AudioPlayer bind:play={play_music} />
|
<!-- <AudioPlayer bind:play={play_music} /> -->
|
||||||
<div class="grid grid-cols-3 mt-12">
|
<div class="grid grid-cols-3 pt-12">
|
||||||
|
<!--mt-12 -->
|
||||||
<div class="flex justify-center">
|
<div class="flex justify-center">
|
||||||
<p class="m-auto text-2xl">
|
<p class="m-auto text-2xl">
|
||||||
{$t('play_page.join_description', {
|
{$t('play_page.join_description', {
|
||||||
|
|||||||
Reference in New Issue
Block a user