Fix typo in Sync preventing publicLink from being set

This commit is contained in:
Robbie Antenesse 2019-05-31 13:03:24 -06:00
parent ab986fe89b
commit afb1a08187
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export function uploadWholeDictionary(asNew = false) {
dictionary,
}, remoteId => {
window.currentDictionary.externalID = remoteId;
dictionary.getElementById('publicLink').value = document.domain + window.location.pathname + remoteId.toString();
document.getElementById('publicLink').value = document.domain + window.location.pathname + remoteId.toString();
saveDictionary(false);
addMessage('Dictionary Uploaded Successfully');
renderChangeDictionaryOptions();