Erez Rokah

Results 560 comments of Erez Rokah

Thanks @magomimmo, will this be covered by implementing https://github.com/netlify/netlify-cms/issues/1975 along with using the `hidden` widget https://www.netlifycms.org/docs/widgets/#hidden?

With the recent addition of being able to use string templates with the relation widget, I think the only missing feature is to target a specific file (correct me if...

Thanks @magomimmo, that's actually a though one. The CMS only stores the `valueField` in the referencing collection data file so you can't use the referenced collection fields in the referencing...

As long as you are sure the `summary` values won't change you can use: `valueField: '{{last}}, {{first}}'` and then in the summary just use `summary: {{referenced}}`. I actually think a...

Hi @vnourdin, this seems like a bug/something we missed when implementing the wildcard access pattern via `*`. I suggest opening a new issue so we can look into it. A...

Hi @timtorres, the CMS does output valid yaml correct? It seems we follow this from the [link](https://yaml-multiline.info/) you shared: ![image](https://user-images.githubusercontent.com/26760571/126904013-a2d067e7-7879-402e-a349-b39c4779f630.png)

True, I agree this is a valid use case, just making sure we're handling the correct use one. > Note: Plain flow scalars are picky about the `:` and `#`...

> But for strings this wouldn't be an issue right? True - we'll need to make sure we only quote strings (or use the `>` format).

Just making sure this isn't a duplicate of https://github.com/netlify/netlify-cms/issues/535 I think this feature can have two variations: 1. As in issue #535 where a file is designed to model a...

Hi @marovargovcik! The hint configuration is accessed here: https://github.com/netlify/netlify-cms/blob/089533683b0483d31da6dc158f3b9bb5f14fb88f/packages/netlify-cms-core/src/components/Editor/EditorControlPane/EditorControl.js#L215 and the List widget is rendered here: https://github.com/netlify/netlify-cms/blob/089533683b0483d31da6dc158f3b9bb5f14fb88f/packages/netlify-cms-widget-list/src/ListControl.js#L500