Skip to content

Commit 5a459ee

Browse files
committed
UI: Add "K" to bookmarks count
fixes #1832 Signed-off-by: Marcel Klehr <[email protected]>
1 parent a937098 commit 5a459ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Navigation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export default {
155155
156156
filters: {
157157
largeNumbers(num) {
158-
return num >= 1000 ? Math.round(num / 100) / 10 : num
158+
return num >= 1000 ? (Math.round(num / 100) / 10) + 'K' : num
159159
},
160160
},
161161
data() {

0 commit comments

Comments
 (0)