From b3eed01a6155eaf6fd8a7dd3c4bfa988967cddd6 Mon Sep 17 00:00:00 2001 From: Chris Mason Date: Tue, 3 Dec 2024 12:23:10 +0000 Subject: [PATCH] issue with table row colouring --- CHANGELOG.md | 4 ++++ jinjafx_server.py | 2 +- www/index.html | 2 +- www/jinjafx_m.js | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b3a76e..dfc9271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## CHANGELOG +### [24.12.1] - Dec 3, 2024 +- Fixed an issue where rows with an incorrect number of fields in `data.csv` weren't being coloured red + ### [24.12.0] - Dec 2, 2024 - Updated `data.csv` pane so it handles escaped commas as per JinjaFx 1.22.1 - Updated `github-markdown-css` to 5.8.1 @@ -348,6 +351,7 @@ ### 21.11.0 - Nov 29, 2021 - Initial release +[24.12.1]: https://github.com/cmason3/jinjafx_server/compare/24.12.0...24.12.1 [24.12.0]: https://github.com/cmason3/jinjafx_server/compare/24.10.1...24.12.0 [24.10.1]: https://github.com/cmason3/jinjafx_server/compare/24.10.0...24.10.1 [24.10.0]: https://github.com/cmason3/jinjafx_server/compare/24.9.0...24.10.0 diff --git a/jinjafx_server.py b/jinjafx_server.py index c60e410..b1608a3 100755 --- a/jinjafx_server.py +++ b/jinjafx_server.py @@ -28,7 +28,7 @@ import re, argparse, hashlib, traceback, glob, hmac, uuid, struct, binascii, gzip, requests, ctypes, subprocess import cmarkgfm, emoji -__version__ = '24.12.0' +__version__ = '24.12.1' llock = threading.RLock() rlock = threading.RLock() diff --git a/www/index.html b/www/index.html index 328a43b..09f723f 100644 --- a/www/index.html +++ b/www/index.html @@ -32,7 +32,7 @@ - +
diff --git a/www/jinjafx_m.js b/www/jinjafx_m.js index 12e5781..ca75860 100644 --- a/www/jinjafx_m.js +++ b/www/jinjafx_m.js @@ -1659,7 +1659,7 @@ function getStatusText(code) { var rowdata = datarows[row].split(delim); if (rowdata.length != hrow.length) { - table += ''; + table += ''; } else { table += '';