diff --git a/SampleApp/Pages/Index.razor b/SampleApp/Pages/Index.razor index 5898151..daf8117 100644 --- a/SampleApp/Pages/Index.razor +++ b/SampleApp/Pages/Index.razor @@ -19,19 +19,19 @@
- + Ctrl+Enter to trigger the command.
- + Ctrl+B to trigger the action.
- + Hover over the "this" on line:4
- + Ctrl+Space on the "this" on line:4
- See the console for results. + See the console for the button results.
@@ -145,9 +145,9 @@ CodeAsObject = new MarkerCode { TargetUri = "https://www.google.com", - Value = "vlue" + Value = "my-value" }, - Message = "Marker sample", + Message = "Marker example", Severity = MarkerSeverity.Warning, StartLineNumber = 4, StartColumn = 3, @@ -168,7 +168,7 @@ { new CodeAction { - Title = "Fix sample", + Title = "Fix example", Kind = "quickfix", Diagnostics = markers, Edit = new WorkspaceEdit @@ -206,7 +206,7 @@ { LabelAsString = "Replace by THIS", Kind = CompletionItemKind.Variable, - Detail = "PRESS ENTER", + Detail = "this -> THIS", InsertText = "THIS", Preselect = true, RangeAsObject = new BlazorMonaco.Range diff --git a/SampleApp/SampleApp.csproj b/SampleApp/SampleApp.csproj index 377cfc0..54caff3 100644 --- a/SampleApp/SampleApp.csproj +++ b/SampleApp/SampleApp.csproj @@ -3,7 +3,7 @@ net7.0 enable - enable + enable diff --git a/SampleApp/wwwroot/css/app.css b/SampleApp/wwwroot/css/app.css index b125583..2c875b1 100644 --- a/SampleApp/wwwroot/css/app.css +++ b/SampleApp/wwwroot/css/app.css @@ -182,7 +182,7 @@ app { } .monaco-editor-container { - height: 200px; + height: 500px; border: 1px solid gray; }