Skip to content

Commit c759f29

Browse files
authored
Fixed typo in SettingsPanel.razor (#369)
Fixed typo "query-contrextual" should be "query-contextual". ## Purpose <!-- Describe the intention of the changes being proposed. What problem does it solve or functionality does it add? --> * ... ## Does this introduce a breaking change? <!-- Mark one with an "x". --> ``` [ ] Yes [ x] No ``` ## Pull Request Type What kind of change does this Pull Request introduce? <!-- Please check the one that applies to this PR using "x". --> ``` [ ] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [ ] Documentation content changes [ x] Other... Please describe: ``` ## How to Test * Get the code ``` git clone [repo-address] cd [repo-name] git checkout [branch-name] npm install ``` * Test the code <!-- Add steps to run the tests suite and/or manually test --> ``` ``` ## What to Check Verify that the following are valid * ... ## Other Information <!-- Add any other helpful information that may be needed here. -->
1 parent 34249a8 commit c759f29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/SharedWebComponents/Components/SettingsPanel.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</MudRadioGroup>
4040
<MudCheckBox @bind-Checked="@Settings.Overrides.SemanticCaptions" Size="Size.Large"
4141
Color="Color.Primary"
42-
Label="Use query-contrextual summaries instead of whole documents" />
42+
Label="Use query-contextual summaries instead of whole documents" />
4343

4444
<MudCheckBox @bind-Checked="@Settings.Overrides.SuggestFollowupQuestions" Size="Size.Large"
4545
Color="Color.Primary" Label="Suggest follow-up questions"
@@ -53,4 +53,4 @@
5353
Close
5454
</MudButton>
5555
</div>
56-
</MudDrawer>
56+
</MudDrawer>

0 commit comments

Comments
 (0)