diff options
| author | Einar Egilsson <einar@einaregilsson.com> | 2020-04-07 08:00:42 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-07 08:00:42 +0000 | 
| commit | 23c9814df907e595c8d8f3bfd31d47fa599d6f8e (patch) | |
| tree | 3a8bcc5d2850e5fa6456cbe73b55f2c60c8ab54e | |
| parent | 0772e5987336c3c469a8ec849ac3f54aab81bf33 (diff) | |
Fix sync ui.
| -rw-r--r-- | js/redirectorpage.js | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/js/redirectorpage.js b/js/redirectorpage.js index ae64785..38e1331 100644 --- a/js/redirectorpage.js +++ b/js/redirectorpage.js @@ -43,7 +43,7 @@ function toggleSyncSetting() {  			alert(response.message)  			showMessage('Error occured when trying to change Sync settings. Look at the logs and raise an issue',false);  		} -		el('#storage-sync-option').checked = options.isSyncEnabled; +		el('#storage-sync-option input').checked = options.isSyncEnabled;  	});  } @@ -355,4 +355,4 @@ function toggleGrouping(index) {  	}  } -pageLoad();
\ No newline at end of file +pageLoad();  | 
