Skip to content

Commit

Permalink
Rename endpoints to browser callables
Browse files Browse the repository at this point in the history
  • Loading branch information
Dudeplayz committed Nov 26, 2024
1 parent 505e0a9 commit d1b28aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public CardPageBuildItem pages(EndpointBuildItem endpointBuildItems) {
CardPageBuildItem cardPageBuildItem = new CardPageBuildItem();
cardPageBuildItem.addBuildTimeData("hillaEndpoints", endpointBuildItems.getEndpoints());
cardPageBuildItem.addPage(Page.webComponentPageBuilder()
.title("Endpoints")
.title("Browser callables")
.icon("font-awesome-solid:table-list")
.componentLink("qwc-quarkus-hilla-endpoints.js")
.componentLink("qwc-quarkus-hilla-browser-callables.js")
.staticLabel(String.valueOf(endpointBuildItems.getEndpoints().stream()
.mapToInt(a -> a.children().size())
.sum())));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import '@vaadin/icon';
/**
* This component shows the Rest Easy Reactive Parameter Converter Providers
*/
export class QwcQuarkusHillaEndpoints extends LitElement {
export class QwcQuarkusHillaBrowserCallables extends LitElement {

static styles = css`
.datatable {
Expand Down Expand Up @@ -197,4 +197,4 @@ export class QwcQuarkusHillaEndpoints extends LitElement {

}

customElements.define('qwc-quarkus-hilla-endpoints', QwcQuarkusHillaEndpoints);
customElements.define('qwc-quarkus-hilla-browser-callables', QwcQuarkusHillaBrowserCallables);

0 comments on commit d1b28aa

Please sign in to comment.