Dimitrios Maragkos
Dimitrios Maragkos
Hello, in `JobsContainer.razor` you have the method `UpdateJobAsync`: ``` public JobModel Payload { get; set; } public async Task UpdateJobAsync(JobStatuses newStatus) { var task = Jobs.SingleOrDefault(x => x.Id == Payload.Id);...
Hi, in the demo project there is an example for using this library with `display: grid;` container: [https://blazordragdrop.azurewebsites.net/displaygrid](https://blazordragdrop.azurewebsites.net/displaygrid). As you can see the elements are displayed in a single column...
Hello, in this PR I added support for the new print type of Print.js, `raw-html` which was missing from this library.
### Is there an existing issue for this? - [x] I have searched the existing issues ### Describe the bug In Blazor templates with authentication enabled the whole top-row is...
Hello, `CssBuilder` has the public method `AddValue` that simply appends the string to the buffer without any modification. `StyleBuilder` has a similar method `AddRaw` but it's private. It would be...
Hello, can this project be modified to include a service-worker.js so it can work offline as PWA? Similar to what the previous template offered with the --pwa option. `` Or...
Fixes https://github.com/Blazored/Toast/issues/252
There was an older issue about a blue bar appearing on Firefox https://github.com/Blazored/Modal/issues/501 that was closed as fixed by a newer browser version but I'm still getting this problem when...
Hello, in [this demo](https://github.com/Jimmys20/redisomdemo) I have the following models: ``` [Document(StorageType = StorageType.Json, Prefixes = ["Player"])] public class PlayerEntity { [RedisIdField, Indexed] public string UniquePlayerId { get; set; } //...