Skip to content

Commit

Permalink
CONCD-1007 trying to fix an issue where the page status still disappe…
Browse files Browse the repository at this point in the history
…ars (after OCR is generated)
  • Loading branch information
rasarkar committed Dec 12, 2024
1 parent 0b31738 commit 6ad0ded
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions concordia/static/js/src/contribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -686,9 +686,9 @@ function setupPage() {
$ocrLoading.attr('hidden', 'hidden');
$('#transcription-status-display')
.children()
.attr('hidden', 'hidden')
.filter('#display-inprogress')
.removeAttr('hidden');
.attr('hidden', 'hidden');
$('#display-inprogress').removeAttr('hidden');
$('#transcription-status-display').removeAttr('hidden');
let messageChildren = $(
'#transcription-status-message',
).children();
Expand Down

0 comments on commit 6ad0ded

Please sign in to comment.