Scanning status should have same color as syncing (ref #449)

This commit is contained in:
Jakob Borg 2014-07-31 10:53:54 +02:00
parent 25f4fd5a19
commit e8fe1590b6
2 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -360,6 +360,9 @@ syncthing.controller('SyncthingCtrl', function ($scope, $http, $translate, $loca
if (state == 'syncing') {
return 'primary';
}
if (state == 'scanning') {
return 'primary';
}
return 'info';
};