|
@ -68,7 +68,7 @@ |
|
|
class="close-button bg-slate-200 w-8 leading-loose rounded-full absolute top-2 right-2" |
|
|
class="close-button bg-slate-200 w-8 leading-loose rounded-full absolute top-2 right-2" |
|
|
@click="onClickClose()" |
|
|
@click="onClickClose()" |
|
|
> |
|
|
> |
|
|
<i class="fa-solid fa-xmark"></i> |
|
|
<fa icon="xmark"></fa> |
|
|
</button> |
|
|
</button> |
|
|
<h4 class="font-bold pr-5">{{ alertTitle }}</h4> |
|
|
<h4 class="font-bold pr-5">{{ alertTitle }}</h4> |
|
|
<p>{{ alertMessage }}</p> |
|
|
<p>{{ alertMessage }}</p> |
|
@ -265,7 +265,7 @@ export default class NewEditProjectView extends Vue { |
|
|
isAlertVisible = false; |
|
|
isAlertVisible = false; |
|
|
public computedAlertClassNames() { |
|
|
public computedAlertClassNames() { |
|
|
return { |
|
|
return { |
|
|
hidden: this.isAlertVisible, |
|
|
hidden: !this.isAlertVisible, |
|
|
"dismissable-alert": true, |
|
|
"dismissable-alert": true, |
|
|
"bg-slate-100": true, |
|
|
"bg-slate-100": true, |
|
|
"p-5": true, |
|
|
"p-5": true, |
|
|