There was an error while loading. Please reload this page.
1 parent b9a5c2f commit 6422f91Copy full SHA for 6422f91
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