Skip to content

Commit

Permalink
tooltip issue and mark Task as done bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
antoineatrhea committed Feb 13, 2023
1 parent 6ed0c42 commit 25d6047
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions UI_DSM.Client/Components/App/Tooltip/Tooltip.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
padding: 5px 0;
border-radius: 6px;
z-index: 1;
transform: translateX(-50%);
}

.tooltip-span::after {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ private void ComputeAvailableViews()
private async Task OnConfirmMarkAsDone()
{
this.ReviewTask.Status = this.ReviewTask.Status == StatusKind.Open ? StatusKind.Done : StatusKind.Open;
await this.reviewTaskService.UpdateReviewTask(this.projectId, this.ReviewObjective.EntityContainer.Id, this.ReviewTask);
await this.reviewTaskService.UpdateReviewTask(this.projectId, this.reviewId, this.ReviewTask);
this.OnCancel();
}

Expand Down

0 comments on commit 25d6047

Please sign in to comment.