Skip to content

Commit cc8051a

Browse files
committed
fix(acms): Tweaks loadingTextMessage to use let for scoping
1 parent 63ce41a commit cc8051a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/appellate/appellate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ AppellateDelegate.prototype.handleAcmsDownloadPage = async function () {
684684
// Remove element from the page to show loading message
685685
let mainDiv = modal.querySelector('.modal-body');
686686
mainDiv.innerHTML = '';
687-
loadingTextMessage = APPELLATE.createsLoadingMessage(caseNumber);
687+
let loadingTextMessage = APPELLATE.createsLoadingMessage(caseNumber);
688688
mainDiv.append(loadingTextMessage);
689689

690690
// Get the pacer_case_id and document GUID from the sessionStorage object

0 commit comments

Comments
 (0)