Skip to content

Commit dc8e800

Browse files
committed
doc: 文本框更改为只读
1 parent cb87b9c commit dc8e800

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ private async Task GetFingerCodeAsync()
1212
}</Pre>
1313
<BootstrapInputGroup>
1414
<BootstrapInputGroupLabel DisplayText="Browser-Finger"></BootstrapInputGroupLabel>
15-
<BootstrapInput @bind-Value="@_code" />
15+
<BootstrapInput Value="@_code" Readonly="true" />
1616
</BootstrapInputGroup>
1717

1818
<BootstrapInputGroup class="mt-3">
1919
<BootstrapInputGroupLabel DisplayText="ClientHubId"></BootstrapInputGroupLabel>
20-
<BootstrapInput @bind-Value="@_clientHubId" />
20+
<BootstrapInput Value="@_clientHubId" Readonly="true" />
2121
</BootstrapInputGroup>
2222
</DemoBlock>
2323

0 commit comments

Comments
 (0)