Skip to content

Commit 389b13a

Browse files
new bpa
1 parent 9c210c7 commit 389b13a

File tree

3 files changed

+179
-245
lines changed

3 files changed

+179
-245
lines changed

src/components/tables/CellGenericFormat.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ export const cellGenericFormatter =
7878
if (typeof cell === 'string') {
7979
return CellTip(cell)
8080
}
81+
if (typeof cell === 'number') {
82+
return <CBadge color="info">{CellTip(cell)}</CBadge>
83+
}
8184
if (Array.isArray(cell) || typeof cell === 'object') {
8285
return CellTip(JSON.stringify(cell))
8386
}

src/views/email-exchange/administration/EditCalendarPermissions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ const EditCalendarPermission = () => {
214214
</CCardHeader>
215215
<CCardBody>
216216
{userIsFetching && <CSpinner />}
217-
{!userIsFetching && (
217+
{!userIsFetching && !userError && (
218218
<>
219219
{user.length > 0 && (
220220
<CippTable reportName="UserPermissions" columns={columns} data={user} />

0 commit comments

Comments
 (0)