@m4l/components 0.0.43 → 0.0.44

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.
@@ -195,13 +195,13 @@ function ObjectLogs(props) {
195
195
  }, [object_id]);
196
196
  const onChangeFilter = useCallback((_initFilters, rawFilters) => {
197
197
  console.log("onChangeFilter", object_id);
198
- setQueryParams({
199
- resource_id,
200
- object_id,
198
+ setQueryParams((oldParms) => ({
199
+ ...oldParms,
201
200
  f: rawFilters
202
- });
201
+ }));
203
202
  Refresh();
204
203
  }, [object_id]);
204
+ console.log("Render ObjectLogs", object_id, queryParams);
205
205
  return /* @__PURE__ */ jsxs(Container$1, {
206
206
  children: [/* @__PURE__ */ jsx(Actions, {
207
207
  id: "objectLogsActions",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
3
  "private": false,
4
- "version": "0.0.43",
4
+ "version": "0.0.44",
5
5
  "license": "UNLICENSED",
6
6
  "scripts": {
7
7
  "dev": "vite",