Alexandre Teyar
Alexandre Teyar
The parameter change should also have an effect on the filters, e.g.: ```js createResource("whatever", { meta: { hide: true, parent: "projects", filters: [{ field: "projects.id", operator: "eq", value: ":projectId" }],...
For other users, this is how I solved this issue: ```js const SidebarLayout = () => { const [isCollapsed, setIsCollapsed] = useState( () => localStorage.getItem("sidebarCollapsed") === "true", ); const handleCollapseToggle...
@apedroferreira would be good to be able to just pass `slotProps` to override the theme switcher to for example change the color to `inherit` rather than `primary`.
@apedroferreira Just a thought — it might be more intuitive to have a slotProps property on the DashboardLayout, similar to how it's implemented in the DataGrid. This would allow us...
@bluebill1049 I'm not sure I follow. 1. `values` is reactive to value changes, but the problem occurs when an empty object is passed conditionally as values. Shouldn't the deep equality...
@bluebill1049 if that is not going to be remediated, it would be good to have this behaviour documented as I have spent considerable amount of time troubleshooting this and having...
@matthewmayer a company can operate across multiple industries so it would make more sense to return an array. Having said that, I would still take industry over nothing.
@matthewmayer, an ETA in mind for this feature, that is a quite common use case to store companies/clients industries and being able to use faker to mock this data would...
What would be the recommended way to get `isDirty` to work correctly when dealing with dynamic forms without `defaultValues`? As mentioned, the form initially mounts with undefined values by default,...
@apedroferreira well the best way IMHO is to just provider the `` and his children and remove all the styling around it. Users are interested in the authentication form/card, not...