In Sync is now Up to Date (fixes #268)

This commit is contained in:
Jakob Borg 2014-05-24 21:06:46 +02:00
parent e2cb0219c7
commit db3341a178
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -163,7 +163,7 @@ syncthing.controller('SyncthingCtrl', function ($scope, $http) {
var conn = $scope.connections[nodeCfg.NodeID];
if (conn) {
if (conn.Completion === 100) {
return 'In Sync';
return 'Up to Date';
} else {
return 'Syncing (' + conn.Completion + '%)';
}