about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/util/react_helpers.js
diff options
context:
space:
mode:
authorkibigo! <marrus-sh@users.noreply.github.com>2017-12-26 16:54:28 -0800
committerkibigo! <marrus-sh@users.noreply.github.com>2018-01-04 18:21:59 -0800
commit3c29f5740447270a4122b334281a907ecbdd4165 (patch)
treedd3daba631f2eddf0ede5af76b8e29eda8874854 /app/javascript/flavours/glitch/util/react_helpers.js
parent924ffe81d477a8cf890c8117efb94b908760bccc (diff)
WIP <Compose> Refactor; <Drawer> ed.
Diffstat (limited to 'app/javascript/flavours/glitch/util/react_helpers.js')
-rw-r--r--app/javascript/flavours/glitch/util/react_helpers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/util/react_helpers.js b/app/javascript/flavours/glitch/util/react_helpers.js
index 0826f3584..087e3969d 100644
--- a/app/javascript/flavours/glitch/util/react_helpers.js
+++ b/app/javascript/flavours/glitch/util/react_helpers.js
@@ -14,7 +14,7 @@ export function assignHandlers (target, handlers) {
 //  This function only returns the component if the result of calling
 //  `test` with `data` is `true`.  Useful with funciton binding.
 export function conditionalRender (test, data, component) {
-  return test ? component : null;
+  return test(data) ? component : null;
 }
 
 //  This object provides props to make the component not visible.