1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix: missing table on insert new records on session restored tabs

This commit is contained in:
2022-07-20 10:41:44 +02:00
parent 985e5d3527
commit 8c83b3f144
5 changed files with 12 additions and 10 deletions

View File

@ -163,6 +163,8 @@
:row-to-duplicate="rowToDuplicate"
:key-usage="keyUsage"
:tab-uid="tabUid"
:schema="schema"
:table="table"
@hide="hideFakerModal"
@reload="reloadTable"
/>
@ -237,7 +239,7 @@ const customizations = computed(() => {
});
const isTable = computed(() => {
return !!workspace.value.breadcrumbs.table;
return !workspace.value.breadcrumbs.view;
});
const fields = computed(() => {
@ -355,7 +357,7 @@ const onKey = (e: KeyboardEvent) => {
pageChange('next');
if (e.key === 'ArrowLeft')
pageChange('prev');
if (e.key === 'f') // f
if (e.key === 'f')
isSearch.value = !isSearch.value;
}
}