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