Thomas

Results 14 comments of Thomas

@kganin @hirschferkel This plugin changes the color scheme you are using, when uninstalling the old color scheme is not put back. You need to determine what color scheme you are...

Hello, I have the same problem on Firefox. The problem seems to come from the CSS property ["min-height" of Body component ](https://github.com/artf/grapesjs-mjml/blob/master/src/components/Body.js#L34) which, in this context, doesn't behave like on...

Looking in detail at the DOM, I see that there is a tag "mjml" I think that browsers do not work in the same way with this non-standard tag. Shouldn't...

I had some time today to work on that. I'm not necessarily good at HTML/CSS but with some research it seems that Firefox can't calculate the height of an element...

If you want to patch this quickly you can define a small plugin that adds the missing CSS rule : ```js const wrapperHeightPatch = (e) => { e.on('load', () =>...

Hi, You can use the block manager from the editor to get a specific block and set it's category. Here it's a snippet on how i use it : ```js...

I face the same problem but only in prod environment, if I remove the following config : ``` when@prod: doctrine: orm: auto_generate_proxy_classes: false query_cache_driver: type: pool pool: doctrine.system_cache_pool result_cache_driver: type:...

@alessandro-podo it seems that the problem has been fixed in version 3.8

Hello, For those who are looking for a solution to put `Migrations` in different assemblies here is a little helper I wrote: [https://gist.github.com/thewrath/a6b735efccff34230ceb3ca11a2d9cb4](https://gist.github.com/thewrath/a6b735efccff34230ceb3ca11a2d9cb4) I simply documented the steps that took...

If it helps, I think the debugger is interfering with this mechanism, I've managed to get it working with the **debugger disabled**. The other thing to watch out for is...