Skip to content

Commit

Permalink
Merge pull request #12293 from nucleogenesis/eqm--bb-quickfixes
Browse files Browse the repository at this point in the history
EQM: Post-bash quickfixes
  • Loading branch information
rtibbles authored Jul 1, 2024
2 parents c03a33d + a2eaf94 commit 18fef12
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
>
<KTextbox
ref="titleField"
v-model="title"
v-model.trim="title"
:label="titleLabel$()"
:maxlength="titleMaxLength"
:autofocus="true"
Expand Down Expand Up @@ -317,7 +317,7 @@
this.showTitleError = true;
this.$refs.titleField.focus();
// Scroll to the title field in case focus() didn't do that immediately
this.window.scrollTo({ top: 0, behavior: 'smooth' });
window.scrollTo({ top: 0, behavior: 'smooth' });
},
},
};
Expand Down

0 comments on commit 18fef12

Please sign in to comment.