mirror of
https://github.com/simple-login/app.git
synced 2025-02-24 15:53:22 +08:00
display N/A if api key name is null
This commit is contained in:
parent
65ce47b6f7
commit
3c81f982ca
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
<div class="col-12 col-lg-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">{{ api_key.name }}</h5>
|
||||
<h5 class="card-title">{{ api_key.name or "N/A" }}</h5>
|
||||
<h6 class="card-subtitle mb-2 text-muted">
|
||||
{% if api_key.last_used %}
|
||||
Last used: {{ api_key.last_used | dt }} <br>
|
||||
|
|
Loading…
Reference in a new issue