Skip to content

Commit

Permalink
IDE001 simplified naming
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnmbond committed Jan 3, 2025
1 parent 943096d commit d5338e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PanoramicData.Blazor.Demo/Pages/PDDragPanelPage.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void OnSelectionChanged(IEnumerable<Job> selection)

public class Job : SelectableItem
{
public Job.Statuses Status { get; set; }
public Statuses Status { get; set; }

public DateTime LastUpdated { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion PanoramicData.Blazor/PDMonacoEditor.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public async Task ExecuteEdits(string source, List<IdentifiedSingleEditOperation
}

[JSInvokable]
public CompletionItem[] GetCompletions(BlazorMonaco.Range range, string functionName)
public CompletionItem[] GetCompletions(Range range, string functionName)
=> ShowSuggestions ? _methodCache.GetCompletionItems(Language, functionName).ToArray() : Array.Empty<CompletionItem>();

private StandaloneEditorConstructionOptions GetOptions(StandaloneCodeEditor editor)
Expand Down

0 comments on commit d5338e7

Please sign in to comment.