We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3736c4 commit c72b7e1Copy full SHA for c72b7e1
example-apps/internal-knowledge-search/app-ui/src/components/SearchApplicationSettings.tsx
@@ -115,7 +115,7 @@ const SearchApplicationSettings: React.FC = () => {
115
className="flex items-center space-x-2 p-2 bg-white rounded border border-gray-300 focus:outline-none focus:border-blue-500"
116
>
117
{searchPersonaOptions.map((option, index) => (
118
- <option value={option} className="block text-left p-2 hover:bg-gray-100 cursor-pointer">
+ <option value={option} selected={option == searchPersona} className="block text-left p-2 hover:bg-gray-100 cursor-pointer">
119
{option}
120
</option>
121
))}
0 commit comments