Skip to content

Commit

Permalink
fix bug 70505
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayRechkin committed Oct 2, 2024
1 parent 5fe01ad commit 854d355
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions products/ASC.Files/Server/Api/EditorController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ public async Task<ConfigurationDto<T>> OpenEditAsync(T fileId, int version, bool
break;

default:
canEdit = edit;
canFill = !edit;
canEdit = true;
canFill = false;
break;
}
}
Expand Down

0 comments on commit 854d355

Please sign in to comment.