Skip to content

Commit

Permalink
Fixed typo in SettingsPanel.razor (#369)
Browse files Browse the repository at this point in the history
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. -->
  • Loading branch information
shribr authored Sep 12, 2024
1 parent 34249a8 commit c759f29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/SharedWebComponents/Components/SettingsPanel.razor
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</MudRadioGroup>
<MudCheckBox @bind-Checked="@Settings.Overrides.SemanticCaptions" Size="Size.Large"
Color="Color.Primary"
Label="Use query-contrextual summaries instead of whole documents" />
Label="Use query-contextual summaries instead of whole documents" />

<MudCheckBox @bind-Checked="@Settings.Overrides.SuggestFollowupQuestions" Size="Size.Large"
Color="Color.Primary" Label="Suggest follow-up questions"
Expand All @@ -53,4 +53,4 @@
Close
</MudButton>
</div>
</MudDrawer>
</MudDrawer>

0 comments on commit c759f29

Please sign in to comment.