Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 7c5bc3c

Browse files
committed
Add IDs to settings sections
1 parent 2d6179d commit 7c5bc3c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/app/pages/settings/index.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const Settings = () => {
1818
'This is where you can manage common settings for your website.',
1919
'wp-plugin-bluehost'
2020
) }
21+
id={ 'settings-header' }
2122
className={ 'wppbh-app-settings-header' }
2223
/>
2324

@@ -35,13 +36,15 @@ const Settings = () => {
3536

3637
<Container.Block
3738
separator={ true }
39+
id={ 'social-media-accounts-section' }
3840
className={ 'wppbh-app-settings-social' }
3941
>
4042
<SocialMediaAccounts />
4143
</Container.Block>
4244

4345
<Container.Block
4446
separator={ true }
47+
id={ 'wonder-blocks-section' }
4548
className={ 'wppbh-app-settings-wonder-blocks' }
4649
>
4750
<Container.SettingsField
@@ -66,12 +69,16 @@ const Settings = () => {
6669

6770
<Container.Block
6871
separator={ true }
72+
id={ 'content-section' }
6973
className={ 'wppbh-app-settings-content' }
7074
>
7175
<ContentSettings />
7276
</Container.Block>
7377

74-
<Container.Block className={ 'wppbh-app-settings-comments' }>
78+
<Container.Block
79+
id={ 'comments-section' }
80+
className={ 'wppbh-app-settings-comments' }
81+
>
7582
<CommentSettings />
7683
</Container.Block>
7784
</Container>

0 commit comments

Comments
 (0)