summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortomasz1986 <twilczynski@naver.com>2023-09-25 21:34:19 +0200
committerGitHub <noreply@github.com>2023-09-25 21:34:19 +0200
commit80a577b025ff83f476c3052850acd0d34e001525 (patch)
tree25f0c38cb79c8a17c6feed9e1f5bd529ff54b6b9
parentd672175ce4c5b7160372b199bcd38adb15c25967 (diff)
gui: Show if device is untrusted in the main GUI (#9116)
Add a new entry to the unfolded device info to inform the user that the device has been marked as "untrusted" and all folders shared with it have to be password-protected or already Receive Encrypted. Signed-off-by: Tomasz WilczyƄski <twilczynski@naver.com>
-rw-r--r--gui/default/index.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/default/index.html b/gui/default/index.html
index 4749704bb7..07ac71ddf7 100644
--- a/gui/default/index.html
+++ b/gui/default/index.html
@@ -912,6 +912,10 @@
</span>
</td>
</tr>
+ <tr ng-if="deviceCfg.untrusted">
+ <th><span class="fa fa-fw fa-user-secret"></span>&nbsp;<span translate>Untrusted</span></th>
+ <td translate class="text-right">Yes</td>
+ </tr>
<tr ng-if="connections[deviceCfg.deviceID].clientVersion">
<th><span class="fas fa-fw fa-tag"></span>&nbsp;<span translate>Version</span></th>
<td class="text-right">{{connections[deviceCfg.deviceID].clientVersion}}</td>