From 69a742e9d3b683f03d01334949c49439fb87bc6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=BCnter?= Date: Thu, 21 Nov 2024 19:55:00 +0100 Subject: [PATCH] small fix to be consistent with other boolean prop (#1559) Co-authored-by: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com> --- src/02/z2ui5_cl_xml_view.clas.abap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/02/z2ui5_cl_xml_view.clas.abap b/src/02/z2ui5_cl_xml_view.clas.abap index 02f73d61..68a5f806 100644 --- a/src/02/z2ui5_cl_xml_view.clas.abap +++ b/src/02/z2ui5_cl_xml_view.clas.abap @@ -5760,7 +5760,7 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION. ns = `core` t_prop = VALUE #( ( n = `value` v = value ) ( n = `key` v = key ) - ( n = `writeToDom` v = writetodom ) ) ). + ( n = `writeToDom` v = z2ui5_cl_util=>boolean_abap_2_json( writetodom ) ) ) ). ENDMETHOD. @@ -7041,7 +7041,7 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION. ( n = `design` v = design ) ( n = `id` v = id ) ( n = `class` v = class ) - ( n = `labelFor` v = labelfor ) + ( n = `labelFor` v = labelfor ) ( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) ) ) ). ENDMETHOD.