Skip to content

Commit

Permalink
fix form-related property refs in compound button
Browse files Browse the repository at this point in the history
  • Loading branch information
radium-v committed Apr 8, 2024
1 parent 48c849f commit 5dd4204
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ export function buttonTemplate<T extends CompoundButton>(options: CompoundButton
?autofocus="${x => x.autofocus}"
?disabled="${x => x.disabled}"
form="${x => x.formId}"
formaction="${x => x.formaction}"
formenctype="${x => x.formenctype}"
formmethod="${x => x.formmethod}"
?formnovalidate="${x => x.formnovalidate}"
formtarget="${x => x.formtarget}"
formaction="${x => x.formAction}"
formenctype="${x => x.formEnctype}"
formmethod="${x => x.formMethod}"
?formnovalidate="${x => x.formNoValidate}"
formtarget="${x => x.formTarget}"
name="${x => x.name}"
type="${x => x.type}"
value="${x => x.value}"
Expand Down Expand Up @@ -52,6 +52,7 @@ export function buttonTemplate<T extends CompoundButton>(options: CompoundButton
<slot name="description"></slot>
</span>
${endSlotTemplate(options)}
<slot name="internal"></slot>
</button>
`;
}
Expand Down

0 comments on commit 5dd4204

Please sign in to comment.