From f11d42c5d2c5b5fd35f2fb821655f44eab2e7ba0 Mon Sep 17 00:00:00 2001 From: Stanislaw Adaszewski Date: Wed, 8 Apr 2020 01:13:47 +0200 Subject: [PATCH] Fix in wbFormatSpecialValue() --- frontend/src/js/misc/wb-format-special-value.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/js/misc/wb-format-special-value.js b/frontend/src/js/misc/wb-format-special-value.js index b4d89b9..ef14033 100644 --- a/frontend/src/js/misc/wb-format-special-value.js +++ b/frontend/src/js/misc/wb-format-special-value.js @@ -1,3 +1,5 @@ +import { h } from 'preact'; + function wbFormatSpecialValue(value) { if (value === null) return (null); if (value === undefined) return (undefined);