Skip to content

Commit

Permalink
chore: rename subform and subform-index to allow for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisolsen authored and ArakTaiRoth committed Jan 21, 2025
1 parent 561484e commit a22379d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions libs/web-components/src/components/form/SubForm.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<svelte:options customElement={{
tag: "goa-subform",
tag: "goa-public-subform",
props: {
continueMsg: { attribute: "continue-msg", type: "String" }
}
Expand Down Expand Up @@ -89,7 +89,7 @@
function bindWithSubformIndex() {
setTimeout(() => {
const el = document
.querySelector("goa-subform-index")
.querySelector("goa-public-subform-index")
.shadowRoot
.querySelector("[data-bind]") as HTMLElement;
relay<SubFormBindRelayDetail>(el, SubFormBindMsg, { el: _receiverEl});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<svelte:options customElement={{
tag: "goa-subform-index",
tag: "goa-public-subform-index",
props: {
actionButtonText: { type: "String", attribute: "action-button-text" },
continueButtonText: { type: "String", attribute: "continue-button-text" },
Expand Down

0 comments on commit a22379d

Please sign in to comment.