Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#12679] Solved the problem of space detection, and can prompt an error for illegal space input #13178

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
add trailing comma
u7861723 committed Oct 25, 2024
commit ea469ac516c42b3172d5fba3df5aea88cfbf9a59
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ export class CopySessionModalComponent {
}
if (this.newFeedbackSessionName.length > this.FEEDBACK_SESSION_NAME_MAX_LENGTH) {
this.statusMessageService.showErrorToast(
`The field "Name for copied session" should less than ${this.FEEDBACK_SESSION_NAME_MAX_LENGTH}.`
`The field "Name for copied session" should less than ${this.FEEDBACK_SESSION_NAME_MAX_LENGTH}.`,
);
return;
}
Loading