Miguel Manzano García
Miguel Manzano García
you can do a work around with this: ``` $isUpdateOrUpdateAttachedRequest = $request->isUpdateOrUpdateAttachedRequest(); $slugField = $isUpdateOrUpdateAttachedRequest ? 'Not A Slug' : 'Slug'; return [ ID::make()->sortable(), SluggableText::make('Name') ->slug($slugField) ->sortable() ->rules('required', 'max:255'), Slug::make('Slug',...
I leave here a repo where you can reproduce the error: https://github.com/mmanzano/dompdf-issue-3530 The problematic CSS is in this file: https://github.com/mmanzano/dompdf-issue-3530/blob/main/resources/views/pdf.blade.php If I'm not wrong, It's something related with the `calc`...
@bsweeney did you have time to take a look into the issue? :heart: