Skip to content

Commit

Permalink
Fixed issue while getting locking status of a bucket (#2790)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
  • Loading branch information
bexsoft authored Apr 26, 2023
1 parent 2c84a52 commit f7a7f01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ const BrowserHandler = () => {
dispatch(
setSimplePathHandler(decodedIPaths === "" ? "/" : decodedIPaths)
);
dispatch(setLoadingLocking(true));
} else {
dispatch(setLoadingObjectInfo(true));
dispatch(setObjectDetailsView(true));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const initialState: ObjectBrowserState = {
loadingVersioning: true,
versionInfo: {},
lockingEnabled: false,
loadingLocking: false,
loadingLocking: true,
selectedObjects: [],
downloadRenameModal: null,
selectedPreview: null,
Expand Down

0 comments on commit f7a7f01

Please sign in to comment.