Skip to content

Commit 5f3cf80

Browse files
committed
fix: 修复插入值逻辑
1 parent 3d74a20 commit 5f3cf80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/BootstrapBlazor.Vditor/Vditor.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public async ValueTask InsertValueAsync(string? value, bool render = true)
128128
{
129129
if (_vditor != null)
130130
{
131-
await _vditor.InvokeVoidAsync("insertValue", Id, value, render);
131+
await _vditor.InvokeVoidAsync("insertValue", value, render);
132132
}
133133
}
134134

0 commit comments

Comments
 (0)