Skip to content

Commit

Permalink
Chore: Update 9.6.0 (#3019)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome committed Mar 1, 2024
1 parent 724928c commit b81c012
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph-explorer-v2",
"version": "9.5.0",
"version": "9.6.0",
"private": true,
"dependencies": {
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",
Expand Down
3 changes: 2 additions & 1 deletion src/app/services/reducers/permissions-reducer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ describe('Permissions reducer', () => {
const expectedState = {
pending: { isSpecificPermissions: false, isFullPermissions: false },
data: {
specificPermissions: [],
fullPermissions: [],
specificPermissions: []
tenantWidePermissionsGrant: []
},
error: 'error'
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/reducers/permissions-reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function scopes(state: IScopes = initialState, action: AppAction): any {
return {
pending: { isFullPermissions: false, isSpecificPermissions: false },
error: action.response,
data: state.data
data: initialState.data
};
case FETCH_URL_SCOPES_PENDING:
return {
Expand Down

0 comments on commit b81c012

Please sign in to comment.