Skip to content

Commit

Permalink
about-page: Fix dialog not opening again after click outside
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl committed Nov 25, 2024
1 parent d6d6d4c commit 3249ea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/About.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<teleport to="body">
<InteractionDialog :show-dialog="showDialog" max-width="740" variant="text-only">
<InteractionDialog v-model="showDialog" max-width="740" variant="text-only">
<template #content>
<div class="flex absolute top-0 right-0"><v-btn icon="mdi-close" variant="text" @click="closeDialog" /></div>
<div class="flex flex-col justify-center align-center w-full h-full">
<img :src="CockpitLogo" alt="Cockpit Logo" class="w-64 my-4" />
<div class="w-[90%] flex justify-between my-8 py-3">
<div class="w-[90%] flex justify-between my-6 py-3">
<div class="w-[45%] flex flex-col text-start">
<p class="mb-1">
Cockpit is an intuitive and customizable cross-platform ground control station for remote vehicles of
Expand Down

0 comments on commit 3249ea8

Please sign in to comment.