Procházet zdrojové kódy

update device handshake time display

pull/46/head
Jonathan Cobb před 4 roky
rodič
revize
3cdbf8ed75
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. +3
    -1
      src/account/DevicesPage.vue

+ 3
- 1
src/account/DevicesPage.vue Zobrazit soubor

@@ -99,7 +99,9 @@
<div v-if="device.status.lastHandshakeTime">
<hr/>
{{messages.label_field_device_connection_handshake}}:
<span v-if="device.status.lastHandshakeMinutes && device.status.lastHandshakeSeconds">{{device.status.lastHandshakeMinutes}}{{messages.units_minutes_short}}, {{device.status.lastHandshakeSeconds}}{{messages.units_seconds_short}}</span>
<span v-if="device.status.lastHandshakeHours && device.status.lastHandshakeMinutes">{{device.status.lastHandshakeHours}}{{messages.units_hours_short}}, {{device.status.lastHandshakeMinutes}}{{messages.units_minutes_short}}</span>
<span v-else-if="device.status.lastHandshakeHours">{{device.status.lastHandshakeHours}}{{messages.units_hours_short}}</span>
<span v-else-if="device.status.lastHandshakeMinutes && device.status.lastHandshakeSeconds">{{device.status.lastHandshakeMinutes}}{{messages.units_minutes_short}}, {{device.status.lastHandshakeSeconds}}{{messages.units_seconds_short}}</span>
<span v-else-if="device.status.lastHandshakeMinutes">{{device.status.lastHandshakeMinutes}}{{messages.units_minutes_short}}</span>
<span v-else-if="device.status.lastHandshakeSeconds">{{device.status.lastHandshakeSeconds}}{{messages.units_seconds_short}}</span>
{{messages.label_field_device_connection_handshake_ago}}


Načítá se…
Zrušit
Uložit