Matheus Ravanello Mokwa

Results 16 comments of Matheus Ravanello Mokwa

+1 The [example cited above actually works](https://medium.com/@harkiratsingh.026/angular-6-mini-variant-drawer-d5326be55dd1), the only problem is that, if you try using animations and autosize, it screws up the layout (you must click anywhere in the...

For anyone else having his problem, you can do the following below to achieve this behavior: 1) Create css global rule ```css .max-width-400px { .mtx-drawer-content-wrapper { max-width: 400px; } }...

+1 This issue have already been asked before a couple of times, but didn't get much attention (the first reference I saw was about to get 2 years old). For...

I ended up doing something similar as @pieceofsummer said with `IServiceProvider`. ``` public void Configure(IHubContext hub) { GlobalJobFilters.Filters.Add(new CustomHangfireFilter(hub)); } ``` I also used JobStorage to get any aditional information...

Unfortunatelly no. Take a look at my code below and see if that helps. ``` public class CustomHangfireFilter : JobFilterAttribute, IApplyStateFilter { private readonly IHubContext _hubContext; public CustomHangfireFilter(IHubContext hubContext) {...

As odd as it seems, when adding a density manually with -1 or -2, the blank space is gone ``` @include mat.all-component-densities(-2); ``` ![image](https://user-images.githubusercontent.com/12090931/206457936-062f5837-3aab-4c55-b828-a88154941d7e.png)

Why is it marked as feature? IMO it's a bug and shouldn't need votes to fix it.