dont hide experimental settings, just disable it (#7014)
Some checks failed
main-build / build-merged (push) Has been cancelled
main-build / auto-tag (push) Has been cancelled
main-build / coverage (push) Has been cancelled
main-build / auto-tag-artifact (push) Has been cancelled
ajson mirror / pr_ajson_changes (push) Has been cancelled

This commit is contained in:
Lars Hvam 2024-08-13 09:22:55 +02:00 committed by GitHub
parent 2c9898e649
commit 0f74ad944f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 17 deletions

View File

@ -23,14 +23,14 @@
]
},
"devDependencies": {
"@abaplint/cli": "^2.112.8",
"@abaplint/cli": "^2.112.14",
"@abaplint/database-sqlite": "^2.8.25",
"@abaplint/runtime": "^2.10.5",
"@abaplint/runtime": "^2.10.9",
"express": "^4.19.2",
"@abaplint/transpiler-cli": "^2.10.5",
"globals": "^15.8.0",
"@abaplint/transpiler-cli": "^2.10.9",
"globals": "^15.9.0",
"abapmerge": "^0.16.0",
"c8": "^10.1.2",
"eslint": "^9.8.0"
"eslint": "^9.9.0"
}
}

View File

@ -163,18 +163,18 @@ CLASS zcl_abapgit_gui_page_sett_glob IMPLEMENTATION.
iv_name = c_id-commitmsg_hide_author
iv_label = 'Hide Author Fields' ).
IF zcl_abapgit_factory=>get_environment( )->is_merged( ) = abap_false.
ro_form->start_group(
iv_name = c_id-devint_settings
iv_label = 'Development Internal Settings'
)->checkbox(
iv_name = c_id-run_critical_tests
iv_label = 'Enable Critical Unit Tests'
)->text(
iv_name = c_id-experimental_features
iv_label = 'Experimental Features'
iv_hint = 'Set to "X" to enable all features or add feature values as a comma-separated list' ).
ENDIF.
ro_form->start_group(
iv_name = c_id-devint_settings
iv_label = 'Development Internal Settings'
)->checkbox(
iv_name = c_id-run_critical_tests
iv_label = 'Enable Critical Unit Tests'
iv_readonly = zcl_abapgit_factory=>get_environment( )->is_merged( )
)->text(
iv_name = c_id-experimental_features
iv_label = 'Experimental Features'
iv_readonly = zcl_abapgit_factory=>get_environment( )->is_merged( )
iv_hint = 'Set to "X" to enable all features or add feature values as a comma-separated list' ).
ro_form->command(
iv_label = 'Save Settings'