From e325e5e2f5f9d09ade29bc86ec160b6da0eb6b71 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 22 Sep 2017 17:31:32 -0230 Subject: Default class params to empty string in readonly-input --- ui/app/components/readonly-input.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/app/components/readonly-input.js') diff --git a/ui/app/components/readonly-input.js b/ui/app/components/readonly-input.js index b688e0722..934cbefae 100644 --- a/ui/app/components/readonly-input.js +++ b/ui/app/components/readonly-input.js @@ -11,8 +11,8 @@ function ReadOnlyInput () { ReadOnlyInput.prototype.render = function () { const { - wrapperClass, - inputClass, + wrapperClass = '', + inputClass = '', value, } = this.props -- cgit