admin panel display improvements

This commit is contained in:
Phillip Thelen
2024-08-19 15:13:32 +02:00
parent 4d64113613
commit 9224f58da5
3 changed files with 14 additions and 12 deletions

View File

@@ -51,7 +51,7 @@
.admin-panel-content {
flex: 0 0 800px;
max-width: unset;
max-width: 800px;
}
</style>

View File

@@ -29,16 +29,17 @@
<strong class="col-sm-9 col-form-label">
{{ hero.auth.timestamps.created | formatDate }}</strong>
</div>
<div
v-if="hero.flags.thirdPartyTools"
class="form-group row"
>
User has employed <strong>third party tools</strong>. Last known usage:
<strong class="col-sm-9 col-form-label">
{{ hero.flags.thirdPartyTools | formatDate }}</strong>
<div class="form-group row">
<label class="col-sm-3 col-form-label">Used third party tools:</label>
<div class="col-sm-9 col-form-label">
<strong v-if="hero.flags.thirdPartyTools">
Yes - {{ hero.flags.thirdPartyTools | formatDate }}</strong>
<strong v-else>No</strong>
</div>
<div v-if="cronError">
"lastCron" value:
</div>
<div v-if="cronError" class="form-group row">
<label class="col-sm-3 col-form-label">lastCron value:</label>
<strong>{{ hero.lastCron | formatDate }}</strong>
<br>
<span class="errorMessage">

View File

@@ -324,7 +324,8 @@
}
.timestamp-column, .action-column {
width: 20%;
width: 27%;
}
.amount-column {
@@ -332,7 +333,7 @@
}
.note-column {
width: 50%;
width: 35%;
}
.entry-action {