Unverified Commit e1686bc7 authored by Kartheek Palla's avatar Kartheek Palla Committed by GitHub
Browse files

Merge pull request #128 from venkateshwarans/release-3.8.0

Issue #SB-24226 fix: Spelling mistake in success message
parents 63d0dfeb 4e702870
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -467,7 +467,7 @@ export class QuestionComponent implements OnInit, AfterViewInit, OnChanges, OnDe
finalize(() => {
this.showHideSpinnerLoader(false);
})).subscribe((response: ServerResponse) => {
this.toasterService.success('Question is created sucessfully');
this.toasterService.success('Question is created successfully');
if (this.actionType === 'previewContent') {
this.questionId = _.first(_.values(_.get(response, 'result.identifiers')));
this.previewContent();
......@@ -489,7 +489,7 @@ export class QuestionComponent implements OnInit, AfterViewInit, OnChanges, OnDe
finalize(() => {
this.showHideSpinnerLoader(false);
})).subscribe((response: ServerResponse) => {
this.toasterService.success('Question is updated sucessfully');
this.toasterService.success('Question is updated successfully');
if (this.actionType === 'previewContent') {
this.previewContent();
} else {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment