Dmitry Smagin
Dmitry Smagin
I also second that feature. In case of internal links, collection types usually contain slugs which will form the final url of the page. That's why having separate url entry...
@ltsNotMike Thanks, you were right. Though, url and title fields are not filled instantly when you choose Content Type and Entity, but only after you press Save on the form....
This fix is already in 'master' branch, pull request could be closed either now or after the new release.
Here's the fix for the issue: ``` --- a/node_modules/@elderjs/plugin-images/utils/helpers.js +++ b/node_modules/@elderjs/plugin-images/utils/helpers.js @@ -58,6 +58,7 @@ function getLargest(fileSizes, orgFormat, maxWidth) { .filter((p) => p.format === orgFormat) .find((p, i, arr) => {...
Hi. I've faced the same problem and reused this patch for minifying type="module" scripts. As I see, html-minifier doesn't remove this attribute from the script tag if 'removeScriptTypeAttributes: false', so...
``` diff --git a/node_modules/html-minifier/src/htmlminifier.js b/node_modules/html-minifier/src/htmlminifier.js index d7efa99..78350a3 100644 --- a/node_modules/html-minifier/src/htmlminifier.js +++ b/node_modules/html-minifier/src/htmlminifier.js @@ -155,6 +155,7 @@ function isAttributeRedundant(tag, attrName, attrValue, attrs) { // https://mathiasbynens.be/demo/javascript-mime-type // https://developer.mozilla.org/en/docs/Web/HTML/Element/script#attr-type var executableScriptsMimetypes = utils.createMap([...
Could you be more specific? I use 1.7.5 and hydration is NOT broken for me, thought there are certain issues. If you use hydrate-options then you have to use 'json'...