Skip to content

Commit

Permalink
Fix CamelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
millerf committed Apr 20, 2020
1 parent d676b2e commit 36be7c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/blocks/post-item/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class PostItem extends React.Component {
post={ post }
link={ enabledPostLink }
target={ null }
gridiconSize={ ICON_SIZE }
gridIconSize={ ICON_SIZE }
includeBasicStatus={ true }
showPublishedStatus={ showPublishedStatus }
/>
Expand Down
2 changes: 1 addition & 1 deletion client/my-sites/pages/page-card-info/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function PageCardInfo( {
post={ page }
link={ contentLink.contentLinkURL }
target={ contentLink.contentLinkTarget }
gridiconSize={ ICON_SIZE }
gridIconSize={ ICON_SIZE }
includeBasicStatus={ true }
/>
) }
Expand Down
6 changes: 3 additions & 3 deletions client/my-sites/post-relative-time-status/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class PostRelativeTime extends React.PureComponent {
post: PropTypes.object.isRequired,
link: PropTypes.string,
target: PropTypes.string,
gridiconSize: PropTypes.number,
gridIconSize: PropTypes.number,
};

static defaultProps = {
Expand Down Expand Up @@ -70,7 +70,7 @@ class PostRelativeTime extends React.PureComponent {
<span className="post-relative-time-status__time">
{ time && (
<>
<Gridicon icon="time" size={ this.props.gridiconSize || 18 } />
<Gridicon icon="time" size={ this.props.gridIconSize || 18 } />
<time className="post-relative-time-status__time-text" dateTime={ time }>
{ this.getDisplayedTimeFromPost( this.props.post ) }
</time>
Expand Down Expand Up @@ -127,7 +127,7 @@ class PostRelativeTime extends React.PureComponent {
if ( statusText ) {
return (
<span className={ statusClassName }>
<Gridicon icon={ statusIcon } size={ this.props.gridiconSize || 18 } />
<Gridicon icon={ statusIcon } size={ this.props.gridIconSize || 18 } />
<span className="post-relative-time-status__status-text">{ statusText }</span>
</span>
);
Expand Down

0 comments on commit 36be7c5

Please sign in to comment.