This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 3.27.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 0b3edfd37c9475db166013436416dd5bf4acd995 Author: James Netherton <[email protected]> AuthorDate: Wed Oct 15 15:05:09 2025 +0100 Fix path to qwc-camel-core.js in Micrometer & MicroProfile Fault Tolerance Dev UI pages --- .../deployment/src/main/resources/dev-ui/qwc-camel-micrometer.js | 2 +- .../src/main/resources/dev-ui/qwc-camel-microprofile-fault-tolerance.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/micrometer/deployment/src/main/resources/dev-ui/qwc-camel-micrometer.js b/extensions/micrometer/deployment/src/main/resources/dev-ui/qwc-camel-micrometer.js index 6cf8db062b..613eff49eb 100644 --- a/extensions/micrometer/deployment/src/main/resources/dev-ui/qwc-camel-micrometer.js +++ b/extensions/micrometer/deployment/src/main/resources/dev-ui/qwc-camel-micrometer.js @@ -15,7 +15,7 @@ * limitations under the License. */ import {html} from 'qwc-hot-reload-element'; -import {QwcCamelCore} from "../org.apache.camel.quarkus.camel-quarkus-core/qwc-camel-core.js"; +import {QwcCamelCore} from "../camel-quarkus-core/qwc-camel-core.js"; import {columnBodyRenderer} from '@vaadin/grid/lit.js'; import '@vaadin/grid'; import '@vaadin/grid/vaadin-grid-sort-column.js'; diff --git a/extensions/microprofile-fault-tolerance/deployment/src/main/resources/dev-ui/qwc-camel-microprofile-fault-tolerance.js b/extensions/microprofile-fault-tolerance/deployment/src/main/resources/dev-ui/qwc-camel-microprofile-fault-tolerance.js index 7c6b2498e2..6d9751680d 100644 --- a/extensions/microprofile-fault-tolerance/deployment/src/main/resources/dev-ui/qwc-camel-microprofile-fault-tolerance.js +++ b/extensions/microprofile-fault-tolerance/deployment/src/main/resources/dev-ui/qwc-camel-microprofile-fault-tolerance.js @@ -15,7 +15,7 @@ * limitations under the License. */ import {html} from 'qwc-hot-reload-element'; -import {QwcCamelCore} from "../org.apache.camel.quarkus.camel-quarkus-core/qwc-camel-core.js"; +import {QwcCamelCore} from "../camel-quarkus-core/qwc-camel-core.js"; import {columnBodyRenderer} from '@vaadin/grid/lit.js'; import '@vaadin/grid'; import '@vaadin/grid/vaadin-grid-sort-column.js';
