diff --git a/src/ui/zcl_abapgit_gui_page_debuginfo.clas.abap b/src/ui/zcl_abapgit_gui_page_debuginfo.clas.abap index 53ba583ec..d73b23e2a 100644 --- a/src/ui/zcl_abapgit_gui_page_debuginfo.clas.abap +++ b/src/ui/zcl_abapgit_gui_page_debuginfo.clas.abap @@ -60,6 +60,9 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_DEBUGINFO IMPLEMENTATION. ro_html->add( '
' ). ro_html->add( render_debug_info( ) ). + ro_html->add( '
' ). + + ro_html->add( '
' ). ro_html->add( render_supported_object_types( ) ). ro_html->add( '
' ). @@ -106,8 +109,8 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_DEBUGINFO IMPLEMENTATION. CREATE OBJECT ro_html. ro_html->zif_abapgit_html~set_title( cl_abap_typedescr=>describe_by_object_ref( me )->get_relative_name( ) ). - ro_html->add( 'debugOutput("Browser: " + navigator.userAgent + ' && - '"
Frontend time: " + new Date(), "debug_info");' ). + ro_html->add( 'debugOutput("
Browser:" + navigator.userAgent + ' && + '"
Frontend time:" + new Date() + "
", "debug_info");' ). ENDMETHOD.