compare model fix

This commit is contained in:
SPRINX0\prochazka
2025-02-04 08:55:11 +01:00
parent d2192c4772
commit 846f63a708
4 changed files with 17 additions and 5 deletions

View File

@@ -196,13 +196,17 @@
title: 'Compare',
icon: 'img compare',
tabComponent: 'CompareModelTab',
props: {
conid: $currentDatabase?.connection?._id,
database: $currentDatabase?.name,
},
},
{
editor: {
sourceConid: _.get($currentDatabase, 'connection._id'),
sourceDatabase: _.get($currentDatabase, 'name'),
targetConid: _.get(connection, '_id'),
targetDatabase: name,
sourceConid: connection?._id,
sourceDatabase: name,
targetConid: $currentDatabase?.connection?._id,
targetDatabase: $currentDatabase?.name,
},
}
);