Update the text "Submit Query" in the Command Palette. (#6810)

This commit is contained in:
Francisco Milán 2024-02-13 02:06:54 -07:00 committed by GitHub
parent 999da0ef9e
commit ac09bd0334
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -560,7 +560,7 @@ CLASS zcl_abapgit_gui_page_repo_over IMPLEMENTATION.
iv_name = |filter|
iv_label = |Filter: { render_filter_help_hint( ) }|
iv_value = ms_list_settings-filter ) ).
ri_html->add( |<input type="submit" class="hidden-submit">| ).
ri_html->add( |<input type="submit" class="hidden-submit" title="Filter">| ).
ri_html->add( |</form>| ).
IF ms_list_settings-only_favorites = abap_true.

View File

@ -2383,7 +2383,7 @@ function enumerateUiActions() {
submitSapeventForm({}, input.formAction, "post", input.form);
}
},
title: input.value + " " + input.title.replace(/\[.*\]/, "")
title: (input.value === "Submit Query" ? input.title : input.value + " " + input.title.replace(/\[.*\]/, ""))
});
});