| Index: components/proximity_auth/webui/resources/device-list.html
|
| diff --git a/components/proximity_auth/webui/resources/device-list.html b/components/proximity_auth/webui/resources/device-list.html
|
| index 7141559cb5359636420ce02d5f7f71f5cc4c9430..15a5ecd904215b2b84b5f67dc9714197418fffae 100644
|
| --- a/components/proximity_auth/webui/resources/device-list.html
|
| +++ b/components/proximity_auth/webui/resources/device-list.html
|
| @@ -95,15 +95,21 @@
|
| <div hidden>
|
| <div>
|
| User Present:
|
| - <span>[[item.remoteState.userPresent]]</span>
|
| + <span>
|
| + [[getUserPresenceText_(item.remoteState.userPresent)]]
|
| + </span>
|
| </div>
|
| <div>
|
| Secure Screen Lock:
|
| - <span>[[item.remoteState.secureScreenLock]]</span>
|
| + <span>
|
| + [[getScreenLockText_(item.remoteState.secureScreenLock)]]
|
| + </span>
|
| </div>
|
| <div>
|
| Trust Agent:
|
| - <span>[[item.remoteState.trustAgent]]</span>
|
| + <span>
|
| + [[getTrustAgentText_(item.remoteState.trustAgent)]]
|
| + </span>
|
| </div>
|
| </div>
|
| </core-tooltip>
|
| @@ -123,6 +129,8 @@
|
| </template>
|
| </div>
|
| <paper-icon-button class="end-icon"
|
| + bluetooth-address="[[item.bluetoothAddress]]"
|
| + on-click="toggleConnection_"
|
| icon="[[getIconForConnection_(item.connectionStatus)]]"
|
| hidden$="{{!item.unlockKey}}">
|
| </paper-icon-button>
|
|
|