mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 23:45:59 +00:00
SYNC: export connections modal screenshot
This commit is contained in:
committed by
Diflow
parent
5d953da267
commit
6b751eb715
@@ -27,6 +27,7 @@ Builds:
|
|||||||
- FIXED: Selection rectangle remains visible after closing JSONB edit cell value form #1031
|
- FIXED: Selection rectangle remains visible after closing JSONB edit cell value form #1031
|
||||||
- FIXED: Diplaying numeric FK column with right alignement #1021
|
- FIXED: Diplaying numeric FK column with right alignement #1021
|
||||||
- ADDED: Additional arguments for MySQL and PostgreSQL backup #1092
|
- ADDED: Additional arguments for MySQL and PostgreSQL backup #1092
|
||||||
|
- CHANGED: Amazon and Azure instalations are not auto-upgraded by default
|
||||||
|
|
||||||
## 6.3.3
|
## 6.3.3
|
||||||
- CHANGED: New administration UI, redesigned administration of users, connections and roles
|
- CHANGED: New administration UI, redesigned administration of users, connections and roles
|
||||||
|
|||||||
@@ -112,4 +112,11 @@ describe('Add connection', () => {
|
|||||||
|
|
||||||
cy.contains('performance_schema');
|
cy.contains('performance_schema');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('export connections', () => {
|
||||||
|
cy.testid('WidgetIconPanel_menu').click();
|
||||||
|
cy.contains('Tools').click();
|
||||||
|
cy.contains('Export connections').click();
|
||||||
|
cy.themeshot('export-connections');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -535,7 +535,7 @@ registerCommand({
|
|||||||
id: 'app.exportConnections',
|
id: 'app.exportConnections',
|
||||||
category: 'Settings',
|
category: 'Settings',
|
||||||
name: 'Export connections',
|
name: 'Export connections',
|
||||||
testEnabled: () => getElectron() != null,
|
testEnabled: () => !getCurrentConfig()?.runAsPortal && !getCurrentConfig()?.storageDatabase,
|
||||||
onClick: () => {
|
onClick: () => {
|
||||||
showModal(ExportImportConnectionsModal, {
|
showModal(ExportImportConnectionsModal, {
|
||||||
mode: 'export',
|
mode: 'export',
|
||||||
@@ -547,7 +547,7 @@ registerCommand({
|
|||||||
id: 'app.importConnections',
|
id: 'app.importConnections',
|
||||||
category: 'Settings',
|
category: 'Settings',
|
||||||
name: 'Import connections',
|
name: 'Import connections',
|
||||||
testEnabled: () => getElectron() != null,
|
testEnabled: () => !getCurrentConfig()?.runAsPortal && !getCurrentConfig()?.storageDatabase,
|
||||||
onClick: async () => {
|
onClick: async () => {
|
||||||
const files = await electron.showOpenDialog({
|
const files = await electron.showOpenDialog({
|
||||||
properties: ['showHiddenFiles', 'openFile'],
|
properties: ['showHiddenFiles', 'openFile'],
|
||||||
|
|||||||
Reference in New Issue
Block a user