We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c7effc commit 5c3d8f5Copy full SHA for 5c3d8f5
app/components/forms/events/view/videoroom-form.hbs
@@ -14,7 +14,7 @@
14
</div>
15
16
<br>
17
-<form class="ui form {{if this.isLoading 'loading'}}" {{action 'submit' on='submit'}}>
+<form class="ui form {{if this.isLoading 'loading'}}">
18
<div class="field">
19
<label class="required">{{t 'Name'}}</label>
20
<Input
app/components/forms/events/view/videoroom-form.js
@@ -91,7 +91,8 @@ export default class VideoroomForm extends Component.extend(FormMixin) {
91
}
92
93
@action
94
- submit() {
+ submit(event) {
95
+ event.preventDefault();
96
this.onValid(async() => {
97
try {
98
this.loading = true;
0 commit comments