File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/BootstrapBlazor.Server/Components/Samples Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ protected override async Task OnInitializedAsync()
4848
4949 private async Task OnReadyAsync ( ) => await ToastService . Information ( Localizer [ "ToastOnReadyTitle" ] , Localizer [ "ToastOnReadyContent" ] ) ;
5050
51- private static Task < UniverSheetData ? > OnPostDataAsync ( UniverSheetData data )
51+ private static Task < UniverSheetData > OnPostDataAsync ( UniverSheetData data )
5252 {
5353 // 这里可以根据 data 的内容进行处理然后返回处理后的数据
5454 // 本例返回与时间相关的数据
@@ -62,7 +62,7 @@ protected override async Task OnInitializedAsync()
6262 Value = DateTime . Now . ToString ( "yyyy-MM-dd HH:mm:ss" )
6363 }
6464 } ;
65- return Task . FromResult < UniverSheetData ? > ( result ) ;
65+ return Task . FromResult ( result ) ;
6666 }
6767
6868 private async Task OnPushExcelData ( )
You can’t perform that action at this time.
0 commit comments