Skip to content

Commit

Permalink
Added the functionality of onChange listner in general setting
Browse files Browse the repository at this point in the history
  • Loading branch information
dakshmehta007 committed Sep 11, 2024
1 parent d7b2215 commit 2e551c8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions backend/package-lock.json

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

4 changes: 2 additions & 2 deletions frontend/package-lock.json

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

8 changes: 6 additions & 2 deletions frontend/src/pages/Settings/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ export default function Settings() {
const content = [
{
key: 'general_settings',
label: translate('General Settings'),
icon: <SettingOutlined />,
label: (
<span onClick={(e) => e.stopPropagation()}>
<SettingOutlined />
{translate('General Settings')}
</span>
),
children: <GeneralSettings />,
},
{
Expand Down

0 comments on commit 2e551c8

Please sign in to comment.