fix logout error

This commit is contained in:
Gregor Vostrak
2024-04-10 03:18:05 +02:00
parent b94c159af0
commit 9cbc54b9b6
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -102,7 +102,7 @@ function onBackgroundClick() {
class="absolute z-50 mt-2 rounded-md shadow-lg"
:class="[widthClass, alignmentClasses]"
style="display: none"
@click.prevent="onContentClick">
@click="onContentClick">
<div
class="rounded-lg ring-1 relative ring-black ring-opacity-5"
:class="contentClasses">
+3 -1
View File
@@ -78,7 +78,9 @@ const logout = () => {
<!-- Authentication -->
<form @submit.prevent="logout">
<DropdownLink as="button" data-testid="logout_button">
<DropdownLink
as="button"
data-testid="logout_button">
Log Out
</DropdownLink>
</form>