Skip to content

Commit a714399

Browse files
committed
Merge branch 'main' into feat-upload
2 parents d6d3d8e + 04bb996 commit a714399

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.fork/custom-commands.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"version" : 2
4+
},
5+
{
6+
"action" : {
7+
"script" : "git branch -d localBranchName\ngit push gitee.com --delete refs/heads/${ref}",
8+
"showOutput" : false,
9+
"type" : "sh",
10+
"waitForExit" : true
11+
},
12+
"name" : "Delete All Branch",
13+
"refTargets" : [
14+
"localbranch",
15+
"remotebranch"
16+
],
17+
"target" : "ref"
18+
},
19+
{
20+
"action" : {
21+
"script" : "git push origin ${ref}\ngit push gitee.com ${ref}",
22+
"showOutput" : false,
23+
"type" : "sh",
24+
"waitForExit" : true
25+
},
26+
"name" : "Push All Branch",
27+
"refTargets" : [
28+
"localbranch"
29+
],
30+
"target" : "ref"
31+
}
32+
]

src/BootstrapBlazor.Server/Components/Samples/SelectGenerics.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@
342342
<SelectGeneric TValue="string" Items="Items">
343343
<DisplayTemplate>
344344
<i class="fa-solid fa-flag"></i>
345-
<span>@context.Text</span>
345+
<span>@context?.Text</span>
346346
</DisplayTemplate>
347347
</SelectGeneric>
348348
</div>

0 commit comments

Comments
 (0)