Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Change `Created/Last seen at` to `Created/Last seen on`.
  • Loading branch information
Teraskull authored May 18, 2022
1 parent b146ba1 commit c663d02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ <h2 class="text-sm text-gray-400 mb-10"></h2>
<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"
Expand Down Expand Up @@ -185,7 +185,7 @@ <h2 class="text-sm text-gray-400 mb-10"></h2>

<!-- 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>
Expand Down

0 comments on commit c663d02

Please sign in to comment.