Skip to content

Commit

Permalink
Merge pull request #197 from stephb9959/main
Browse files Browse the repository at this point in the history
[WIFI-13259] Fixing issue related to captive section
  • Loading branch information
BourqueCharles authored Jan 22, 2024
2 parents ae8a087 + 49263ac commit c3af8b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wlan-cloud-owprov-ui",
"version": "3.0.0(7)",
"version": "3.0.1(1)",
"description": "",
"main": "index.tsx",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const CaptiveConfiguration = ({ editing }: { editing: boolean }) => {
</Heading>
<Spacer />
<Box>
<Select value={captive['auth-mode']} onChange={handleAuthModeChange} isDisabled={!editing}>
<Select value={captive?.['auth-mode']} onChange={handleAuthModeChange} isDisabled={!editing}>
<option value="click">Click</option>
<option value="radius">Radius</option>
<option value="credentials">Credentials</option>
Expand Down

0 comments on commit c3af8b6

Please sign in to comment.