Arnaud Juracek
Arnaud Juracek
Bumping this issue with a different use case which requires the same fix : Pasting an URL containing at least two `_` into a writer field causes the link to...
> The panel would reload whenever the `.lock` file was written, because `inPanel() === false`. I got the same issue and your PR fixes it. The only issue I see...
In my setup the blank panel was due to a port mismatch, and was solved by using this `index.php` : ```php
Try to define your path relative to the `bundle.css`, ie: ``` src: url("../fonts/fl.woff2") format('woff2') ``` If you have `assets/fonts` and `assets/builds/bundle.css`.
Your fonts should be relative to your `bundle.css`, not your sass file : - `src/your-file.sass` - `www/assets/builds/bundle.css` - `www/assets/fonts/f1.woff` And then in `your-file.sass` : ``` // Resolve to www/assets/builds/../fonts/fl.woff2 src:...
What font paths do you call in `src/libs/type.sass` ?
```diff @font-face font-family: favorit - src: url("/assets/fonts/fl.woff2") format('woff2') + src: url("../fonts/fl.woff2") format('woff2') … font-weight: 300 font-style: normal font-display: fallback ```
Clearly './fonts/fl.ttf' and '../fonts/fl.ttf' are two differents paths. You may have broken something in the webpack configs when you changed your preprocessor to SASS.
IMHO the UX is better for the user when the field is completely hidden, but you may have other scenarios in mind where disabling the field makes more sense ?...
Using `model` gives me the expected user page model when using in `help`, but returns the page computed by the `parent` key when used in `query`: ```yml # users/actor.yml title:...