fix(webui): version display
ci/woodpecker/push/woodpecker Pipeline was successful Details

feat/vault-scan-modes
Tomáš Mládek 2023-10-23 10:35:00 +02:00
parent ea8d30ebc4
commit 6a3d71d2d4
1 changed files with 7 additions and 2 deletions

View File

@ -256,8 +256,8 @@
</div>
<div>
<!-- svelte-ignore security-anchor-rel-noreferrer -->
<a target="_blank" href="https://upend.dev">
v{$vaultInfo?.version || "???"}
<a target="_blank" href="https://upend.dev" class="version">
{$vaultInfo?.version || "???"}
</a>
</div>
</footer>
@ -353,4 +353,9 @@
padding: 1em;
margin: auto;
}
.version {
text-decoration: none;
opacity: .66;
}
</style>