Skip to content

Commit 3edda5c

Browse files
authored
Fix case of destructured variable (#52028)
Authored-by: Dale du Preez <[email protected]>
1 parent a2d4baa commit 3edda5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/components/vertical-nav/item/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ class VerticalNavItem extends Component {
4747
};
4848

4949
render() {
50-
const { isPlaceHolder, external, onClick, path, className, children } = this.props;
50+
const { isPlaceholder, external, onClick, path, className, children } = this.props;
5151

52-
if ( isPlaceHolder ) {
52+
if ( isPlaceholder ) {
5353
return this.placeholder();
5454
}
5555

0 commit comments

Comments
 (0)