Skip to content

Commit 6997afe

Browse files
Merge branch 'dev' of https://github.com/KelvinTegelaar/CIPP into dev
2 parents c7b676e + 93c0254 commit 6997afe

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/data/GraphExplorerPresets.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@
105105
"params": {
106106
"endpoint": "/reports/authenticationMethods/userRegistrationDetails",
107107
"$filter": "",
108-
"$select": ""
108+
"$select": "",
109+
"AsApp": true
109110
},
110111
"isBuiltin": true
111112
},
@@ -125,7 +126,8 @@
125126
"params": {
126127
"endpoint": "/reports/authenticationMethods/userRegistrationDetails",
127128
"$filter": "IsAdmin eq true",
128-
"$select": ""
129+
"$select": "",
130+
"AsApp": true
129131
},
130132
"isBuiltin": true
131133
},

src/pages/tenant/standards/bpa-report/view.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const Page = () => {
113113
}
114114
}
115115
}
116-
}, [bpaTemplateList.isSuccess, bpaData.isSuccess, currentTenant, router]);
116+
}, [bpaTemplateList.isSuccess, bpaData.isSuccess, bpaData.data, currentTenant, router]);
117117

118118
const pageTitle = `BPA Report Viewer - ${currentTenant}`;
119119
return (
@@ -221,6 +221,8 @@ const Page = () => {
221221
noCard={true}
222222
incorrectDataMessage={"No data has been found for this report."}
223223
simpleColumns={block?.simpleColumns}
224+
isFetching={bpaData.isFetching}
225+
refreshFunction={() => bpaData.refetch()}
224226
/>
225227
) : (
226228
<Typography variant="h6" color="textPrimary">

0 commit comments

Comments
 (0)