summaryrefslogtreecommitdiff
path: root/source/features/bugs-tab.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'source/features/bugs-tab.tsx')
-rw-r--r--source/features/bugs-tab.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/features/bugs-tab.tsx b/source/features/bugs-tab.tsx
index bdd34ddc..2cb64b73 100644
--- a/source/features/bugs-tab.tsx
+++ b/source/features/bugs-tab.tsx
@@ -93,7 +93,9 @@ async function init(): Promise<void | false> {
// Update bugs count
try {
- bugsCounter.textContent = abbreviateNumber(await countPromise);
+ const bugCount = await countPromise;
+ bugsCounter.textContent = abbreviateNumber(bugCount);
+ bugsCounter.title = bugCount > 999 ? String(bugCount) : '';
} catch (error: unknown) {
bugsCounter.remove();
features.error(__filebasename, error);