From f2105465df7928932c08164fb54ae4ec284fdaf0 Mon Sep 17 00:00:00 2001 From: Robbie Antenesse Date: Fri, 31 May 2019 13:03:24 -0600 Subject: [PATCH] Fix typo in Sync preventing publicLink from being set --- src/js/account/sync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/account/sync.js b/src/js/account/sync.js index 5b4df0b..b6a6b30 100644 --- a/src/js/account/sync.js +++ b/src/js/account/sync.js @@ -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();