Skip to content

Commit

Permalink
fix: add ...attributes to Form
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras committed Mar 25, 2024
1 parent f3afc89 commit 666fac1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ember/app/components/form.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ export default class FormComponent extends Component {
}

<template>
<form class='uk-form' autocomplete='off' {{on 'submit' this.submit}}>
<form
class='uk-form'
autocomplete='off'
{{on 'submit' this.submit}}
...attributes
>
<fieldset class='uk-fieldset'>
<legend class='uk-legend'>{{@name}}</legend>
{{yield
Expand Down

0 comments on commit 666fac1

Please sign in to comment.