Skip to content

Commit

Permalink
Tiny design fix
Browse files Browse the repository at this point in the history
  • Loading branch information
haukex authored Sep 25, 2024
1 parent 70597ba commit 20f16c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ window.addEventListener('DOMContentLoaded', async () => {
rand_entry_link.classList.add('busy-link')
}
if ( newState === MainState.Ready )
dict_status.innerText = `Dictionary holds ${dictLinesLen} entries` + ( dictWasUpdated ? '(updated in background).' : '.' )
dict_status.innerText = `Dictionary holds ${dictLinesLen} entries` + ( dictWasUpdated ? ' (updated in background).' : '.' )
else if ( newState === MainState.AwaitingDict )
dict_status.innerText = 'The dictionary is loading, please wait...'
else if ( newState === MainState.Searching )
Expand Down

0 comments on commit 20f16c1

Please sign in to comment.