Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Reopen "Add organization" modal after closing it
category: fixed
author: Eva Millán <[email protected]>
issue: 1023
notes: >
The "Add organization" dialog would not open again after
closing it by clicking outside of it.
6 changes: 5 additions & 1 deletion ui/src/components/EnrollModal.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<template>
<v-dialog :model-value="isOpen" :max-width="organization ? '550px' : '740px'">
<v-dialog
:model-value="isOpen"
:max-width="organization ? '550px' : '740px'"
@click:outside="onClose"
>
<v-card class="pa-3">
<v-card-title class="headline">{{ title }}</v-card-title>
<v-card-text>
Expand Down