Skip to content

Commit

Permalink
change single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
u7861723 committed Oct 25, 2024
1 parent 9349569 commit 91389f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class CopySessionModalComponent {
*/
copy(): void {
if (this.newFeedbackSessionName.trim().length === 0) {
this.errorMessage = "The field \"Name for copied session\" should not be whitespace.";
this.errorMessage = 'The field \"Name for copied session\" should not be whitespace.';

Check failure on line 41 in src/web/app/components/copy-session-modal/copy-session-modal.component.ts

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

Unnecessary escape character: \"

Check failure on line 41 in src/web/app/components/copy-session-modal/copy-session-modal.component.ts

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

Unnecessary escape character: \"

Check failure on line 41 in src/web/app/components/copy-session-modal/copy-session-modal.component.ts

View workflow job for this annotation

GitHub Actions / lint (windows-latest)

Unnecessary escape character: \"

Check failure on line 41 in src/web/app/components/copy-session-modal/copy-session-modal.component.ts

View workflow job for this annotation

GitHub Actions / lint (windows-latest)

Unnecessary escape character: \"
return;
}

Expand Down

0 comments on commit 91389f1

Please sign in to comment.