You've already forked AstralRinth
forked from didirus/AstralRinth
Add unclosable modals (#70)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<Modal ref="modal" :header="props.title">
|
||||
<Modal ref="modal" :header="props.title" :noblur="noblur">
|
||||
<div class="modal-delete">
|
||||
<div class="markdown-body" v-html="renderString(props.description)" />
|
||||
<label v-if="props.hasToType" for="confirmation" class="confirmation-label">
|
||||
@@ -61,6 +61,10 @@ const props = defineProps({
|
||||
type: String,
|
||||
default: 'Proceed',
|
||||
},
|
||||
noblur: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
})
|
||||
|
||||
const emit = defineEmits(['proceed'])
|
||||
|
||||
Reference in New Issue
Block a user