gui: Remove erronous $ from scope in directive (fixes #7124) (#7125)

This commit is contained in:
Simon Frei 2020-11-18 13:33:19 +01:00 committed by Jakob Borg
parent 35c813f56f
commit dcddd9c1e4
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ angular.module('syncthing.core')
}
});
//Prevents user from adding a duplicate ID
if ($scope.devices.hasOwnProperty(viewValue)) {
if (scope.devices.hasOwnProperty(viewValue)) {
ctrl.$setValidity('unique', false);
} else {
ctrl.$setValidity('unique', true);