Skip to content

Commit

Permalink
fixed translation
Browse files Browse the repository at this point in the history
  • Loading branch information
az108 committed Nov 26, 2024
1 parent 4847f02 commit 4d47d71
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ export class FeedbackAnalysisComponent {
feedbackDetailText: feedbackDetail.detailText,
};
const createdChannel = await this.feedbackAnalysisService.createChannel(this.courseId(), this.exerciseId(), feedbackChannelRequest);
const name = createdChannel.name;
this.alertService.success(this.TRANSLATION_BASE + '.channelSuccess', { name });
const channelName = createdChannel.name;
this.alertService.success(this.TRANSLATION_BASE + '.channelSuccess', { channelName });
if (navigate) {
const urlTree = this.router.createUrlTree(['courses', this.courseId(), 'communication'], {
queryParams: { conversationId: createdChannel.id },
Expand Down

0 comments on commit 4d47d71

Please sign in to comment.