Skip to content

Commit

Permalink
fix : Failed to process image construction
Browse files Browse the repository at this point in the history
  • Loading branch information
wzh425 committed Jul 1, 2023
1 parent 7c5acb9 commit 486fcc0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@inherits AdminCompontentBase
<MRow Class="mt-6">
<MCol>
<MCheckbox Class="mt-0" @bind-Value="Value.IsCustom" Disabled="ReadOnly" Label="@T("DisplayName.SendingRule.IsCustom")"></MCheckbox>
<MCheckbox Class="mt-0" @bind-Value="Value.IsCustom" TValue="bool" Disabled="ReadOnly" Label="@T("DisplayName.SendingRule.IsCustom")"></MCheckbox>
</MCol>
</MRow>
@if (Value.IsCustom)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<STextField @bind-Value="_model.MessageInfo.JumpUrl"
Label="@T("DisplayName.MessageTemplateJumpUrl")" Tooltip="@T("JumpUrlTips")">
<PrependContent>
<MCheckbox Class="mt-0" @bind-Value="_model.MessageInfo.IsJump"></MCheckbox>
<MCheckbox Class="mt-0" @bind-Value="_model.MessageInfo.IsJump" TValue="bool"></MCheckbox>
</PrependContent>
<PrependInnerContent>
<SIcon Size=16 Class="mt-2">fas fa-link</SIcon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<STextField @bind-Value="_model.MessageInfo.JumpUrl"
Label="@T("DisplayName.MessageTemplateJumpUrl")" Tooltip="@T("JumpUrlTips")">
<PrependContent>
<MCheckbox Class="mt-0" @bind-Value="_model.MessageInfo.IsJump"></MCheckbox>
<MCheckbox Class="mt-0" @bind-Value="_model.MessageInfo.IsJump" TValue="bool"></MCheckbox>
</PrependContent>
</STextField>
</MCol>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<STextField @bind-Value="_model.JumpUrl"
Label="@T("DisplayName.MessageTemplateJumpUrl")" Tooltip="@T("JumpUrlTips")">
<PrependContent>
<MCheckbox Class="mt-0" @bind-Value="_model.IsJump"></MCheckbox>
<MCheckbox Class="mt-0" @bind-Value="_model.IsJump" TValue="bool"></MCheckbox>
</PrependContent>
</STextField>
</MCol>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<STextField @bind-Value="_model.JumpUrl"
Label="@T("DisplayName.MessageTemplateJumpUrl")">
<PrependContent>
<MCheckbox Class="mt-0" @bind-Value="_model.IsJump"></MCheckbox>
<MCheckbox Class="mt-0" @bind-Value="_model.IsJump" TValue="bool"></MCheckbox>
</PrependContent>
</STextField>
</MCol>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</MCol>
</MRow>
<div class="mt-9 d-flex">
<MCheckbox Class="mt-2" @bind-Value="_model.IsJump"></MCheckbox>
<MCheckbox Class="mt-2" @bind-Value="_model.IsJump" TValue="bool"></MCheckbox>
<STextField @bind-Value="_model.JumpUrl" Class="ml-2"
Label="@T("DisplayName.MessageTemplateJumpUrl")" Disabled="!_model.IsJump">
</STextField>
Expand Down

0 comments on commit 486fcc0

Please sign in to comment.