From 6e1351d9aba9589f5b90c5a17f239644a51714de Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Sun, 21 Sep 2025 00:00:50 +0200 Subject: [PATCH] Fixes to JsonForm and json * Update model when JsonForm.editable set false * Bugfixes in jsonPatch --- dialog.css | 4 ++-- index.html | 7 +++++-- json.js | 2 +- jsonform.css | 3 +++ jsonform.js | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++- 5 files changed, 65 insertions(+), 6 deletions(-) diff --git a/dialog.css b/dialog.css index 0dd489f..34df86c 100644 --- a/dialog.css +++ b/dialog.css @@ -30,14 +30,14 @@ --jsl-dialog-bgcolor: #ffd; --jsl-dialog-bordercolor: #835f10; .-title::before { - content: '✔ '; + content: '⁉️ '; } } &.-style-error { --jsl-dialog-bgcolor: #fcc; --jsl-dialog-bordercolor: #bb3434; .-title::before { - content: '⚠️ '; + content: '⛔ '; } } &.-style-warning { diff --git a/index.html b/index.html index 99481b3..b29394e 100644 --- a/index.html +++ b/index.html @@ -10,7 +10,7 @@