Skip to content

Commit

Permalink
Merge branch 'bug-webui' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tkote committed Dec 12, 2022
2 parents 94208eb + 2377464 commit 512cbc2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 17 deletions.
2 changes: 1 addition & 1 deletion pom-docker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>oracle.demo</groupId>
<artifactId>helidon-demo-mp-docker-build</artifactId>
<version>3.0.2.2</version>
<version>3.0.2.2.1</version>
<name>helidon-demo-mp-docker-build</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<groupId>me.opc-helidon</groupId>
<artifactId>helidon-demo-mp</artifactId>
<version>3.0.2.2</version>
<version>3.0.2.2.1</version>
<name>${project.artifactId}</name>

<properties>
Expand Down
22 changes: 7 additions & 15 deletions src/main/resources/WEB/apm.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,24 +46,16 @@ $(function () {
$('#pre1').text('');
});

$('#button_health').click(function () {
$('#path').val($('#button_health').text());
});

$('#button_openapi').click(function () {
$('#path').val($('#button_openapi').text());
});

$('#button_jpa').click(function () {
$('#path').val($('#button_jpa').text());
$('.dropdown-item').click(function () {
console.log(this);
$('#path').val($(this).text());
});

$('#button_jpa_error').click(function () {
$('#path').val($('#button_jpa_error').text());
});

$('#button_tracing').click(function () {
$('#path').val($('#button_tracing').text());
/*
$('#button_health').click(function () {
$('#path').val($('#button_health').text());
});
*/

});

0 comments on commit 512cbc2

Please sign in to comment.