Skip to content

Commit

Permalink
Merge pull request #1187 from appwrite/fix-small-migrations
Browse files Browse the repository at this point in the history
Small Migrations Fixes
  • Loading branch information
TorstenDittmann authored Jul 18, 2024
2 parents 1bf64db + 466a19e commit a9a2b14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/console/(migration-wizard)/resource-form.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@
$provider.subdomain,
$provider.region,
$provider.adminSecret,
$provider.database,
$provider.username,
$provider.database || $provider.subdomain,
$provider.username || 'postgres',
$provider.password
);
}
Expand Down Expand Up @@ -186,7 +186,7 @@
</div>
</Box>

{#if report && !isVersionAtLeast(version, '1.4.0')}
{#if report && !isVersionAtLeast(version, '1.4.0') && $provider.provider === 'appwrite'}
<div class="u-margin-block-start-24">
<Alert
type="warning"
Expand Down

0 comments on commit a9a2b14

Please sign in to comment.