Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion resources/js/views/RoomsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</span>
</template>
<template #footer>
<div class="flex w-full justify-start">
<div class="flex w-full justify-start gap-2">
<!-- Reload page, in case the room settings changed -->
<Button
data-test="reload-room-button"
Expand All @@ -55,6 +55,13 @@
:label="$t('rooms.try_again')"
@click="reload"
/>

<Button
icon="fa-solid fa-lock"
:label="$t('auth.login')"
as="router-link"
:to="{ name: 'login', query: { redirect: $route.fullPath } }"
/>
</div>
</template>
</Card>
Expand Down
Loading