Skip to content

Commit

Permalink
Refactor: Collapse panel bodies by default (#7464)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjohnson authored Jul 31, 2024
1 parent 4bfb893 commit 70874e6
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export default function Edit({
/>
</PanelRow>
</PanelBody>
<PanelBody title={__('Country', 'give')} initialOpen={true}>
<PanelBody title={__('Country', 'give')} initialOpen={false}>
<PanelRow>
<TextControl
label={__('Label')}
Expand All @@ -151,7 +151,7 @@ export default function Edit({
/>
</PanelRow>
</PanelBody>
<PanelBody title={__('Address 1', 'give')} initialOpen={true}>
<PanelBody title={__('Address 1', 'give')} initialOpen={false}>
<PanelRow>
<TextControl
label={__('Label')}
Expand All @@ -167,7 +167,7 @@ export default function Edit({
/>
</PanelRow>
</PanelBody>
<PanelBody title={__('Address 2', 'give')} initialOpen={true}>
<PanelBody title={__('Address 2', 'give')} initialOpen={false}>
<PanelRow>
<TextControl
label={__('Label')}
Expand All @@ -191,7 +191,7 @@ export default function Edit({
/>
</PanelRow>
</PanelBody>
<PanelBody title={__('City', 'give')} initialOpen={true}>
<PanelBody title={__('City', 'give')} initialOpen={false}>
<PanelRow>
<TextControl
label={__('Label')}
Expand All @@ -207,7 +207,7 @@ export default function Edit({
/>
</PanelRow>
</PanelBody>
<PanelBody title={__('Zip', 'give')} initialOpen={true}>
<PanelBody title={__('Zip', 'give')} initialOpen={false}>
<PanelRow>
<TextControl
label={__('Label')}
Expand Down

0 comments on commit 70874e6

Please sign in to comment.