Skip to content

Commit

Permalink
merge latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fgilde committed Nov 22, 2024
2 parents 802bc52 + cc6307f commit 2d71dea
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/TryMudEx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy TryMudEx
on:
push:
branches:
- '**'
- 'main'
env:
AZURE_WEBAPP_NAME: TryMudEx
AZURE_WEBAPP_PACKAGE_PATH: .\published
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nuget_preview_publish_and_app_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
deploy_application_to_azure:
needs: build_and_deploy_preview_package
runs-on: windows-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ protected override void OnParametersSet()
throw new ArgumentException("ToolbarPosition must be either 'Top' or 'Bottom'.");
base.OnParametersSet();
Items ??= new List<T>();
Items = new List<T>(Items);
}

/// <summary>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions MudBlazor.Extensions/wwwroot/js/mudBlazorExtensions.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -2303,6 +2303,7 @@ class MudExDialogResizeHandler extends MudExDialogHandlerBase {

checkResizeable() {
MudExDomHelper.toAbsolute(this.dialog, false);
this.setRelativeIf();
if (this.options.resizeable) {
this.resizeObserver.observe(this.dialog);
this.dialog.style['resize'] = 'both';
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@

checkResizeable() {
MudExDomHelper.toAbsolute(this.dialog, false);
this.setRelativeIf();
if (this.options.resizeable) {
this.resizeObserver.observe(this.dialog);
this.dialog.style['resize'] = 'both';
Expand Down

0 comments on commit 2d71dea

Please sign in to comment.