From d91c77bfcd602518d9fe4f6d72b809e18e284f56 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Fri, 20 Oct 2017 21:23:13 -0700 Subject: [PATCH] Fix --- frontend/components/Editor/components/HorizontalRule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/Editor/components/HorizontalRule.js b/frontend/components/Editor/components/HorizontalRule.js index 375641eae..286a5acb1 100644 --- a/frontend/components/Editor/components/HorizontalRule.js +++ b/frontend/components/Editor/components/HorizontalRule.js @@ -5,7 +5,7 @@ import type { Props } from '../types'; import { color } from 'styles/constants'; function HorizontalRule(props: Props) { - const { state, node } = this.props; + const { state, node } = props; const active = state.isFocused && state.selection.hasEdgeIn(node); return ; }