Skip to content

Commit

Permalink
feat(fxcore): Added app description
Browse files Browse the repository at this point in the history
  • Loading branch information
ekkinox committed Jul 26, 2024
1 parent 1290913 commit 35d496c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fxcore/templates/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="container-fluid">
<a class="navbar-brand icon-link icon-link-hover fw-bold" href="/" style="--bs-icon-link-transform: scale(1.2);">
<i class="bi bi-terminal"></i>&nbsp;{{ .overviewInfo.AppName }}
{{ if or .overviewAppDescriptionExpose .overviewInfo.AppDescription }}
{{ if and .overviewAppDescriptionExpose .overviewInfo.AppDescription }}
<span class="d-inline-block text-truncate text-primary" style="max-width: 350px;">{{ .overviewInfo.AppDescription }}</span>
{{ end }}
</a>
Expand Down Expand Up @@ -157,7 +157,7 @@
</p>
<table class="table table-borderless table-sm">
<tbody>
{{ if or .overviewAppDescriptionExpose .overviewInfo.AppDescription }}
{{ if and .overviewAppDescriptionExpose .overviewInfo.AppDescription }}
<tr>
<td class="w-25">Description</td>
<td><code>{{ .overviewInfo.AppDescription }}</code></td>
Expand Down

0 comments on commit 35d496c

Please sign in to comment.