Skip to content

Commit

Permalink
Merge pull request #366 from adessoSE/dev
Browse files Browse the repository at this point in the history
Bump loader-utils from 2.0.3 to 2.0.4 in /frontend
  • Loading branch information
dsorna authored Nov 16, 2022
2 parents 1d40bbe + 3ce573a commit 5d534e5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 deletions.
36 changes: 18 additions & 18 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export class RenameStoryComponent {

story: Story;
stories: Story[];
storytitle: string;
storyForm = new FormGroup ({
storyTitle: new FormControl('', [Validators.required, Validators.pattern(/\S/)]),
storyDescription: new FormControl(''),
Expand Down Expand Up @@ -48,7 +47,7 @@ export class RenameStoryComponent {
* Submits the new name for the story & description
*/
submitRenameStory() {
const title = this.storyForm.value.storytitle;
const title = this.storyForm.value.storyTitle;
const description = this.storyForm.value.storyDescription;
this.apiService.renameStoryEmit(title, description);
this.modalReference.close();
Expand Down

0 comments on commit 5d534e5

Please sign in to comment.