Skip to content

Commit 008a27f

Browse files
authored
fix downport
1 parent 86b4809 commit 008a27f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/z2ui5_cl_demo_app_320.clas.abap

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ CLASS z2ui5_cl_demo_app_320 IMPLEMENTATION.
292292
ENDMETHOD.
293293

294294
METHOD calculate_content_height.
295-
result = |{ condense( CONV i( floor( ( lines / 2 ) ) * 68 + 48 ) ) }px|.
295+
DATA(lv_floor) = floor( ( lines / 2 ) ) * 68 + 48.
296+
DATA(lv_string) = CONV string( lv_floor ).
297+
result = |{ condense( lv_string ) }px|.
296298
ENDMETHOD.
297299
ENDCLASS.

0 commit comments

Comments
 (0)