GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3251
@@ -640,12 +640,12 @@ angular.module('syncthing.core')
if (status === 'unknown') {
return 'info';
}
- if (status === 'unshared') {
- return 'warning';
- }
if (status === 'stopped' || status === 'outofsync' || status === 'error') {
return 'danger';
+ if (status === 'unshared') {
+ return 'warning';
+ }
};