mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-05-01 02:43:59 +00:00
Merge branch 'master' into feature/cloud
This commit is contained in:
@@ -52,7 +52,10 @@ async function generateDeploySql({
|
||||
dbdiffOptionsExtra?.['schemaMode'] !== 'ignore' &&
|
||||
dbdiffOptionsExtra?.['schemaMode'] !== 'ignoreImplicit'
|
||||
) {
|
||||
throw new Error('targetSchema is required for databases with multiple schemas');
|
||||
if (!driver?.dialect?.defaultSchemaName) {
|
||||
throw new Error('targetSchema is required for databases with multiple schemas');
|
||||
}
|
||||
targetSchema = driver.dialect.defaultSchemaName;
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
@@ -939,9 +939,17 @@ registerCommand({
|
||||
id: 'app.openSponsoring',
|
||||
category: 'Application',
|
||||
name: 'Become sponsor',
|
||||
testEnabled: () => !isProApp(),
|
||||
onClick: () => openWebLink('https://opencollective.com/dbgate'),
|
||||
});
|
||||
|
||||
registerCommand({
|
||||
id: 'app.giveFeedback',
|
||||
category: 'Application',
|
||||
name: 'Give us feedback',
|
||||
onClick: () => openWebLink('https://dbgate.org/feedback'),
|
||||
});
|
||||
|
||||
registerCommand({
|
||||
id: 'app.zoomIn',
|
||||
category: 'Application',
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
<p>Your feedback is very valuable for us. It helps us to improve DbGate and make it more useful for you.</p>
|
||||
|
||||
<div class="center">
|
||||
<FormStyledButton on:click={() => openWebLink('https://dbgate.org/survey')} value="Fill out the survey" skipWidth />
|
||||
<FormStyledButton on:click={() => openWebLink('https://dbgate.org/feedback')} value="Give us feedback" skipWidth />
|
||||
</div>
|
||||
</WidgetsInnerContainer>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user