Fixed size of upload dialog
This commit is contained in:
parent
636ede230e
commit
44ddee8866
1 changed files with 9 additions and 1 deletions
|
@ -288,7 +288,15 @@
|
||||||
["GameId"] = Game.Id
|
["GameId"] = Game.Id
|
||||||
};
|
};
|
||||||
|
|
||||||
var dialog = await DialogService.ShowAsync<ArchiveUploader>("Archive Uploader", parameters);
|
var dialog = await DialogService.ShowAsync<ArchiveUploader>("Upload Archive", parameters, new DialogOptions()
|
||||||
|
{
|
||||||
|
CloseButton = false,
|
||||||
|
DisableBackdropClick = true,
|
||||||
|
FullWidth = true,
|
||||||
|
MaxWidth = MaxWidth.Large,
|
||||||
|
CloseOnEscapeKey = false,
|
||||||
|
});
|
||||||
|
|
||||||
var result = await dialog.Result;
|
var result = await dialog.Result;
|
||||||
|
|
||||||
await GameService.Context.Entry(Game).Collection(nameof(Game.Archives)).LoadAsync();
|
await GameService.Context.Entry(Game).Collection(nameof(Game.Archives)).LoadAsync();
|
||||||
|
|
Loading…
Add table
Reference in a new issue