From 59a28b6ea2bf3e4ae2edb058ce4d1c8c4da9175b Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Sat, 15 Feb 2025 23:21:26 +1100 Subject: [PATCH] Fix hyperlinked quantities --- src/display.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/display.ts b/src/display.ts index de319ee..b6906dd 100644 --- a/src/display.ts +++ b/src/display.ts @@ -1,6 +1,6 @@ /* DrCr: Web-based double-entry bookkeeping framework - Copyright (C) 2022–2024 Lee Yingtong Li (RunasSudo) + Copyright (C) 2022–2025 Lee Yingtong Li (RunasSudo) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by @@ -53,7 +53,7 @@ export function ppBracketed(quantity: number, link?: string): string { if (link) { // Put the space outside of the hyperlink so it is not underlined - return '' + text + '' + space; + return '' + text + '' + space; } else { return text + space; }