Skip to content

Commit

Permalink
Merge pull request #12 from mint73/mint73/issue3
Browse files Browse the repository at this point in the history
update: qr
  • Loading branch information
mint73 authored Dec 19, 2023
2 parents 1509ad0 + fec7d0c commit d7b8551
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion suiran/Pages/Sell.razor
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ else
{
<div class="footer">
<a class="under-button" type="button" data-bs-toggle="modal" data-bs-target="#DelModal">削除</a>
<a class="under-button" type="button" data-bs-toggle="modal" data-bs-target="#Modal" @onclick="() => QR()">QR</a>
<a class="under-button" type="button" data-bs-toggle="modal" data-bs-target="#Modal" @onclick="QR">QR</a>
</div>

@foreach (var item in this.item_data)
Expand Down Expand Up @@ -152,6 +152,7 @@ else
AllPrices += item.ItemPrices;
}
}
StateHasChanged();// UIの再描画
// QRコード作成処理(遅いので非同期処理)
qrContent = "";
Expand Down

0 comments on commit d7b8551

Please sign in to comment.