Browse Source
Fix typo
Change `Created/Last seen at` to `Created/Last seen on`.
pull/260/head
Anton Grouchtchak
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/www/index.html
|
|
@ -107,7 +107,7 @@ |
|
|
|
<div class="flex-grow"> |
|
|
|
|
|
|
|
<!-- Name --> |
|
|
|
<div class="text-gray-700 group" :title="'Created at ' + dateTime(new Date(client.createdAt))"> |
|
|
|
<div class="text-gray-700 group" :title="'Created on ' + dateTime(new Date(client.createdAt))"> |
|
|
|
|
|
|
|
<!-- Show --> |
|
|
|
<input v-show="clientEditNameId === client.id" v-model="clientEditName" |
|
|
@ -185,7 +185,7 @@ |
|
|
|
|
|
|
|
<!-- Last seen --> |
|
|
|
<span v-if="client.latestHandshakeAt" |
|
|
|
:title="'Last seen at ' + dateTime(new Date(client.latestHandshakeAt))"> |
|
|
|
:title="'Last seen on ' + dateTime(new Date(client.latestHandshakeAt))"> |
|
|
|
· {{new Date(client.latestHandshakeAt) | timeago}} |
|
|
|
</span> |
|
|
|
</div> |
|
|
|