home
·
contact
·
privacy
projects
/
ledgplom
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
37fc723
)
In /edit_structured view, fix broken "replace string" button.
author
Christian Heller
<c.heller@plomlompom.de>
Sun, 8 Feb 2026 17:01:11 +0000
(18:01 +0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Sun, 8 Feb 2026 17:01:11 +0000
(18:01 +0100)
src/templates/edit_structured.js
patch
|
blob
|
history
diff --git
a/src/templates/edit_structured.js
b/src/templates/edit_structured.js
index 1bd52e9602008382712ee9ea878f7f56600a8cee..a32a5a274cdced699bfefc06b187e989f0cf019b 100644
(file)
--- a/
src/templates/edit_structured.js
+++ b/
src/templates/edit_structured.js
@@
-357,7
+357,7
@@
const replace = () => {
Object.keys(bookingLine).
filter((key) => key !== "errors").
forEach((key) => {
- bookingLine[key] = bookingLine[key].replaceAll(
+ bookingLine[key] = bookingLine[key].
toString().
replaceAll(
replFrom,
replTo
);