DTL panel fix close btn
This commit is contained in:
parent
7ea4362696
commit
a0d2d9b622
1 changed files with 5 additions and 1 deletions
|
|
@ -174,7 +174,11 @@ const { proposals } = defineProps({
|
||||||
const { openedFile } = storeToRefs(useDialogStore());
|
const { openedFile } = storeToRefs(useDialogStore());
|
||||||
|
|
||||||
const isDialogOpen = computed(() => {
|
const isDialogOpen = computed(() => {
|
||||||
return openedFile.value != null;
|
if (openedFile.value) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const isOptimizationDialogOpen = ref(false);
|
const isOptimizationDialogOpen = ref(false);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue