react-admin
react-admin copied to clipboard
A frontend Framework for building data-driven applications running on top of REST/GraphQL APIs, using TypeScript, React and Material Design
Add the ability to disable title configuration (while still make the rest of the page configurable)
**Is your feature request related to a problem? Please describe.** The documentation of AppBar says https://marmelab.com/react-admin/AppBar.html#configurable > By default, users can override the page title [in configurable mode](https://marmelab.com/react-admin/Features.html#configurable-ui). But did...
### What you were expecting `` should just work when used as a child of ``, ``, or `` ### What happened instead The button is rendered, it calls `dataProvider.getList()`,...
```graphql type User { _id: String! bookmark: Bookmark # Works just fine bookmarks: [Bookmark!]! # Provoke a "Maximum call stack size exceeded" Error stuffs: [Stuff!] } type Bookmark { book:...
**What you were expecting:** When using AutocompleteArrayInput with a ReferenceArrayInput with parse/format options: - the options list should not flicker - the input value should not reset itself **What happened...
## Problem There are rules dictating the allowed children for the `Admin` components because those are configuration elements. You can't just pass any react elements. This is in part because...
Currently the `` is rendered to a React portal; either `` or any component with the `react-admin-title` ID. This approach is fairly brittle, as you can only render the title...
**What you were expecting:** When the `dataProvider.getList()` call fails, components rendering a list should render something meaningful and consistent. **What happened instead:** - For fetcher components - `` renders the...
**What you were expecting:** That the example of the documentation of ArrayInput with FormDataConsumer works: https://marmelab.com/react-admin/Inputs.html#arrayinput **What happened instead:** No Fields or CustomFields are shown, only React Admin Inputs are...
**What you were expecting:** The value entered in the filter field is expected to be independent of the response from the dataProvider. **What happened instead:** Instead, if you start typing...
**What you were expecting:** Add ReferenceInput inside SimpleFormIterator inside ArrayInput, I should be able to add as many fields as i like and they keep their selected value. **What happened...