Skip to content

Commit

Permalink
fix: fix IP Whitelist field bug in application edit page
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Nov 3, 2024
1 parent c190634 commit 535eb0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/ApplicationEditPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ class ApplicationEditPage extends React.Component {
{Setting.getLabel(i18next.t("general:IP whitelist"), i18next.t("general:IP whitelist - Tooltip"))} :
</Col>
<Col span={22} >
<Input placeholder = {this.state.application.organizationObj?.ipWhitelist} value={this.state.application.ipWhiteList} onChange={e => {
<Input placeholder = {this.state.application.organizationObj?.ipWhitelist} value={this.state.application.ipWhitelist} onChange={e => {
this.updateApplicationField("ipWhitelist", e.target.value);
}} />
</Col>
Expand Down

0 comments on commit 535eb0c

Please sign in to comment.