realm-studio
realm-studio copied to clipboard
Realm Studio
Since [tslint is deprecated](https://github.com/palantir/tslint/issues/4534), we should migrate the project to use eslint with the typescript plugins instead. See https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/README.md
Realm Studio has an inbuilt schema export, but right now it is only usable when using Realm Studio. It would be nice if this feature could be extracted into a...
We have some forms which has grown to be more complex and it would probably be a good idea to add a form library (such as [Formik](https://www.npmjs.com/package/formik)). More specifically we...
Historically, we've used a pattern naming methods that handle events with an `on` prefix (i.e. `onClick`, `onCancel` ...). We've decided that this is not the most meaningful naming and would...
The sass-lint package is no longer actively maintained and we should switch to something actively maintained. One potential package is stylelint-scss.
Realm will return `null` for optional values, hence the current output: ```javascript stringValue?: string; ``` Should be extended to: ```javascript stringValue?: string | null; ``` Keeping it optional for insertion,...
Now that [mochapack supports webpack 5](https://github.com/sysgears/mochapack/releases/tag/v2.1.0) we can unpin webpack, sass-loader and ts-loader and update [/docs/DEPENDENCIES.md](https://github.com/realm/realm-studio/blob/channel/major-10/docs/DEPENDENCIES.md) accordingly.
Freshdesk Ticket ID: 5 Freshdesk Ticket Agent: Ian WardFreshdesk Ticket Agent Email: [email protected] Priority: LowFreshdesk Ticket Description:Hi, We are working with Realm Studio and we have an issue importing data...
As an intermediary fix before adding a UI to specify / modify the schema when importing from CSV (https://github.com/realm/realm-studio/issues/826) we could enable users to specify the property type in the...
**Describe the bug** Row selection is lost when clicking a scrollbar **To Reproduce** Steps to reproduce the behavior: 1. view a list of objects 2. select a row such that...