Skip to content

Commit

Permalink
Do not open panels by default
Browse files Browse the repository at this point in the history
  • Loading branch information
oandregal committed Aug 2, 2018
1 parent cd57766 commit 09b8f23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import PostFormat from '../post-format';

const MaybePostFormatPanel = ( { currentPostFormat, suggestedPostFormat } ) => suggestedPostFormat &&
suggestedPostFormat !== currentPostFormat &&
<PanelBody initialOpen={ true } title={ [
<PanelBody initialOpen={ false } title={ [
<Dashicon key={ 'dashicon-lightbulb' } icon={ 'lightbulb' } />,
__( 'Tip:' ),
<span className="editor-post-publish-panel__link" key="label">{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Dashicon, PanelBody } from '@wordpress/components';

import FlatTermSelector from '../post-taxonomies/flat-term-selector';

const TagsPanel = () => <PanelBody initialOpen={ true } title={ [
const TagsPanel = () => <PanelBody initialOpen={ false } title={ [
<Dashicon key={ 'dashicon-lightbulb' } icon={ 'lightbulb' } />,
__( 'Tip:' ),
<span className="editor-post-publish-panel__link" key="label">{
Expand Down

0 comments on commit 09b8f23

Please sign in to comment.