rez-table-listing-mui 1.3.34 → 1.3.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/listing/components/filter/components/forms/index.tsx +13 -10
- package/src/listing/components/filter/components/saved-filter.tsx +6 -909
- package/src/listing/components/filter/index.tsx +16 -0
- package/src/listing/components/login/index.tsx +1 -1
|
@@ -216,6 +216,22 @@ export function TableFilter({
|
|
|
216
216
|
}
|
|
217
217
|
|
|
218
218
|
setTabValue(newValue);
|
|
219
|
+
if (newValue === 0) {
|
|
220
|
+
setFilterMaster((prev) => {
|
|
221
|
+
if (!prev) return prev;
|
|
222
|
+
return {
|
|
223
|
+
...prev,
|
|
224
|
+
saved_filters: {
|
|
225
|
+
...(prev.saved_filters ?? {}),
|
|
226
|
+
selectedId: "",
|
|
227
|
+
selectedName: "",
|
|
228
|
+
description: "",
|
|
229
|
+
is_shared: false,
|
|
230
|
+
is_editable: false,
|
|
231
|
+
},
|
|
232
|
+
};
|
|
233
|
+
});
|
|
234
|
+
}
|
|
219
235
|
|
|
220
236
|
if (tabType === "Filter") {
|
|
221
237
|
setEditMode(false);
|
|
@@ -9,7 +9,7 @@ const LoginButton = () => {
|
|
|
9
9
|
setLoading(true);
|
|
10
10
|
const api_url = "https://api.eth-qa.rezolut.in/api/enrol/auth";
|
|
11
11
|
// const api_url = "http://localhost:6011/api/auth";
|
|
12
|
-
const email_id = "
|
|
12
|
+
const email_id = "shraddha.nandurkar@rezolut.in";
|
|
13
13
|
const email_otp = "123456";
|
|
14
14
|
const sub_domain = "universal";
|
|
15
15
|
|