Merge pull request #1412 from coollabsio/next
Fix database type check in service show blade file
This commit is contained in:
commit
8db54ec069
@ -14,9 +14,9 @@
|
|||||||
href="#">Storages
|
href="#">Storages
|
||||||
</a>
|
</a>
|
||||||
@if (
|
@if (
|
||||||
$serviceDatabase->databaseType() === 'standalone-mysql' ||
|
$serviceDatabase?->databaseType() === 'standalone-mysql' ||
|
||||||
$serviceDatabase->databaseType() === 'standalone-postgresql' ||
|
$serviceDatabase?->databaseType() === 'standalone-postgresql' ||
|
||||||
$serviceDatabase->databaseType() === 'standalone-mariadb')
|
$serviceDatabase?->databaseType() === 'standalone-mariadb')
|
||||||
<a :class="activeTab === 'backups' && 'text-white'"
|
<a :class="activeTab === 'backups' && 'text-white'"
|
||||||
@click.prevent="activeTab = 'backups'; window.location.hash = 'backups'" href="#">Backups</a>
|
@click.prevent="activeTab = 'backups'; window.location.hash = 'backups'" href="#">Backups</a>
|
||||||
@endif
|
@endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user