Add unclosable modals (#70)

This commit is contained in:
Geometrically
2023-06-19 22:15:45 -07:00
committed by GitHub
parent 2bdd0a0e8d
commit 61e00f1620
4 changed files with 17 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
<template>
<Modal ref="modal" :header="`Report ${props.itemType}`">
<Modal ref="modal" :header="`Report ${props.itemType}`" :noblur="noblur">
<div class="modal-report">
<div class="markdown-body">
<p>
@@ -76,6 +76,10 @@ const props = defineProps({
type: Function,
default: () => {},
},
noblur: {
type: Boolean,
default: false,
},
})
const reportType = ref('')