Skip to content

Commit

Permalink
react on code review
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAndBear committed Feb 26, 2024
1 parent d978bc3 commit d3e0642
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Enhancement: Indicate shares that are not manageable due to file locking
Bugfix: Indicate shares that are not manageable due to file locking

We indicate shares that are not manageable when a resource is locked, so the user don't run into errors,
We indicate shares that are not manageable when a resource is locked, so the user doesn't run into errors,
while trying to delete or update a share.

https://github.com/owncloud/web/pull/10514
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default defineComponent({
const dropButtonTooltip = computed(() => {
if (props.isLocked) {
return language.$gettext('Resource is temporary locked, unable to manage share')
return language.$gettext('Resource is temporarily locked, unable to manage share')
}
return ''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default defineComponent({
const dropButtonTooltip = computed(() => {
if (props.isLocked) {
return $gettext('Resource is temporary locked, unable to manage share')
return $gettext('Resource is temporarily locked, unable to manage share')
}
return ''
Expand Down

0 comments on commit d3e0642

Please sign in to comment.