Skip to content

Commit

Permalink
uppercase letter change
Browse files Browse the repository at this point in the history
  • Loading branch information
kazutoweseek committed Dec 4, 2024
1 parent 839cd92 commit 433fee7
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class SecuritySetting extends React.Component {
// render
this.renderPageDeletePermission = this.renderPageDeletePermission.bind(this);
this.renderPageDeletePermissionDropdown = this.renderPageDeletePermissionDropdown.bind(this);
this.securitysettingDropdown = this.securitysettingDropdown.bind(this);
this.securitySettingDropdown = this.securitySettingDropdown.bind(this);
}

async putSecuritySetting() {
Expand Down Expand Up @@ -187,9 +187,8 @@ class SecuritySetting extends React.Component {
}


securitySettingsDropdown = () => {
securitySettingsDropdown = (useState) => {
const { t } = this.props;
// eslint-disable-next-line no-undef
const [settings, setSettings] = useState({
isShowRestrictedByOwner: false,
isShowRestrictedByGroup: false,
Expand Down Expand Up @@ -455,7 +454,7 @@ class SecuritySetting extends React.Component {
</div>

<div className="col-auto mt-4">
<this.securitysettingDropdown />
<this.securitySettingDropdown />
</div>

<div className="container text-center">
Expand All @@ -465,7 +464,7 @@ class SecuritySetting extends React.Component {
</div>

<div className="col-auto mt-4">
<this.securitysettingDropdown />
<this.securitySettingDropdown />
</div>
</div>
</div>
Expand Down

0 comments on commit 433fee7

Please sign in to comment.