Skip to content

Commit d7ba046

Browse files
committed
Fix HTTP status 404 in the admin console help window
Signed-off-by: Takahiro Nagao <[email protected]>
1 parent 085e129 commit d7ba046

File tree

1 file changed

+5
-2
lines changed
  • appserver/admingui/common/src/main/resources/js

1 file changed

+5
-2
lines changed

appserver/admingui/common/src/main/resources/js/adminjsf.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022 Contributors to the Eclipse Foundation. All rights reserved.
2+
* Copyright (c) 2022, 2025 Contributors to the Eclipse Foundation. All rights reserved.
33
* Copyright (c) 2010, 2020 Oracle and/or its affiliates. All rights reserved.
44
*
55
* This program and the accompanying materials are made available under the
@@ -2627,7 +2627,10 @@ admingui.ajax = {
26272627
alert("'execButton' not found! Unable to submit JSF2 Ajax Request!");
26282628
} else {
26292629
// Don't ping b/c this is from the header and therefor is a ping
2630-
faces.ajax.request(src, null,
2630+
faces.ajax.request(src,
2631+
{
2632+
type: 'click'
2633+
},
26312634
{
26322635
execute: 'execButton',
26332636
render: 'execResp',

0 commit comments

Comments
 (0)