Correctly show/hide publicLinkDisplay after changing dictionaries
This commit is contained in:
parent
546c82996e
commit
ec42aa3778
|
@ -38,6 +38,7 @@ export function performSync(remoteDictionary) {
|
||||||
if (success) {
|
if (success) {
|
||||||
renderAll();
|
renderAll();
|
||||||
document.getElementById('accountSettingsChangeDictionary').value = window.currentDictionary.externalID;
|
document.getElementById('accountSettingsChangeDictionary').value = window.currentDictionary.externalID;
|
||||||
|
document.getElementById('publicLinkDisplay').style.display = window.currentDictionary.settings.isPublic ? '' : 'none';
|
||||||
} else {
|
} else {
|
||||||
console.error('word sync failed');
|
console.error('word sync failed');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue