@m4l/components 0.0.44 → 0.0.45
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.
|
@@ -193,14 +193,14 @@ function ObjectLogs(props) {
|
|
|
193
193
|
object_id
|
|
194
194
|
}));
|
|
195
195
|
}, [object_id]);
|
|
196
|
-
const onChangeFilter =
|
|
196
|
+
const onChangeFilter = (_initFilters, rawFilters) => {
|
|
197
197
|
console.log("onChangeFilter", object_id);
|
|
198
198
|
setQueryParams((oldParms) => ({
|
|
199
199
|
...oldParms,
|
|
200
200
|
f: rawFilters
|
|
201
201
|
}));
|
|
202
202
|
Refresh();
|
|
203
|
-
}
|
|
203
|
+
};
|
|
204
204
|
console.log("Render ObjectLogs", object_id, queryParams);
|
|
205
205
|
return /* @__PURE__ */ jsxs(Container$1, {
|
|
206
206
|
children: [/* @__PURE__ */ jsx(Actions, {
|