Peter Oesteritz
Peter Oesteritz
+1
My PR worked well for our use case, but we switched to Craft CMS since the combination of WordPress + Multilanguage + Gutenberg + GraphQL + ACF drove us crazy...
Oh. I've played around a bit, but applying the content filter for sure does not work – it's not meant to apply changes to the code representation of Gutenberg blocks....
I thouht the same, but doing this will convert the Gutenberg code to real HTML 😔
> ... but the alternative is destructuring Dialog a bit (which makes it harder to drop-in and use). Yes, that's why I thought a prop would fit better. But if...
:+1:
I just had a look at other usages of this gem and found an interesting approach: https://github.com/annict/annict/blob/master/app/graphql/foreign_key_loader.rb Eager loading works fine using this loader: ``` Loaders::ForeignKeyLoader.for(Milestone, :project_id).load([object.id]) ``` results in...
I had the same problem: Simply add ``` padding: { left: 500 }, ``` to your chart config. To set a dynamic value, I'm using a little jQuery Plugin that...
It would be really great if the documentation could include the information about the colon :) This issue saved me hours.
I'm running GitLab pages with this config on my Synology: ``` [...] "env_variables" : [ [...] { "key" : "GITLAB_PAGES_EXTERNAL_HTTP", "value" : ":8081" }, { "key" : "GITLAB_PAGES_ENABLED", "value" :...