Skip to content

Commit a8e579e

Browse files
Merge pull request #3269 from kris6673/filters
Add filters for included and excluded tenants in settings
2 parents 8ba2017 + a0a9034 commit a8e579e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/pages/cipp/settings/tenants.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,19 @@ const Page = () => {
9999
actions={actions}
100100
offCanvas={offCanvas}
101101
simpleColumns={columns}
102+
filters={[
103+
{
104+
filterName: "Included tenants",
105+
//true or false filters by yes/no
106+
value: [{ id: "Excluded", value: "No" }],
107+
type: "column",
108+
},
109+
{
110+
filterName: "Excluded tenants",
111+
value: [{ id: "Excluded", value: "Yes" }],
112+
type: "column",
113+
},
114+
]}
102115
/>
103116
<CippApiDialog
104117
title="Force Refresh Tenant"

0 commit comments

Comments
 (0)