Sebastien R

Results 6 issues of Sebastien R

[Interpolation DOC](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#interpolation_) less code ``` @media @desk{ padding-left: 20px; } ``` is converted to this scss code ``` @media $desk{ padding-left: 20px; } ``` instead of ``` @media #{$desk}{ padding-left:...

When using it as a pivot field in a BelongsToMany relation, how to store the values with a pivot attribute ? example : ``` public function mainSpecialty() { return $this->belongsToMany(Specialty::class)->wherePivot('is_main',...

feature request

https://github.com/advoor/nova-editor-js/blob/c7bb8906d8290fc5722f5057264de5ab83745c73/src/Http/Controllers/EditorJsLinkController.php#L20 The "active_url" validator failed when then domain use a CNAME (ex: https://www.lemonde.fr) Should be a simple "url" validator.

### Symfony version(s) affected 6.1 ### Description When we use the command `bin/console translation:push` (we use loco provider... but it's the same issue with the others), if the translation files...

Bug
Translation
Status: Needs Review

Fix AdminUrlGenerator when dashboard routes are localized with ISO 3166-1 format. e.g. `admin.fr_FR`

When I try to use a MorphTo field into a felxible layout, it raise a `Call to protected method Whitecube\\NovaFlexibleContent\\Layouts\\Layout::relationLoaded() from context 'Laravel\\Nova\\Fields\\MorphTo'` Is it normal ?