mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
gui: Fix editing devices (fixes #3236)
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3237
This commit is contained in:
parent
01ae866d58
commit
8c4723ff43
@ -539,7 +539,7 @@
|
||||
</tr>
|
||||
<tr ng-if="deviceFolders(deviceCfg).length > 0">
|
||||
<th><span class="fa fa-fw fa-folder"></span> <span translate>Folders</span></th>
|
||||
<td class="text-right">{{deviceFolders(deviceCfg).join(", ")}}</td>
|
||||
<td class="text-right">{{deviceFolders(deviceCfg).map(folderLabel).join(", ")}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -1406,8 +1406,7 @@ angular.module('syncthing.core')
|
||||
var devices = $scope.folders[folderID].devices;
|
||||
for (var i = 0; i < devices.length; i++) {
|
||||
if (devices[i].deviceID === deviceCfg.deviceID) {
|
||||
var label = $scope.folders[folderID].label;
|
||||
folders.push(label.length > 0 ? label : folderID);
|
||||
folders.push(folderID);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -1417,6 +1416,11 @@ angular.module('syncthing.core')
|
||||
return folders;
|
||||
};
|
||||
|
||||
$scope.folderLabel = function (folderID) {
|
||||
var label = $scope.folders[folderID].label;
|
||||
return label.length > 0 ? label : folderID;
|
||||
}
|
||||
|
||||
$scope.deleteFolder = function (id) {
|
||||
$('#editFolder').modal('hide');
|
||||
if (!$scope.editingExisting) {
|
||||
|
Loading…
Reference in New Issue
Block a user