From e272aba2221d8eae635f6d90f85ae637f0744a57 Mon Sep 17 00:00:00 2001 From: Thibaud Colas Date: Tue, 30 Jan 2018 16:23:00 +0200 Subject: [PATCH] Make it possible to use SVG icons in Draftail --- client/src/components/Draftail/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/components/Draftail/index.js b/client/src/components/Draftail/index.js index 1a75ee8558..b536837e5d 100644 --- a/client/src/components/Draftail/index.js +++ b/client/src/components/Draftail/index.js @@ -16,7 +16,8 @@ import ModalWorkflowSource from './sources/ModalWorkflowSource'; import registry from './registry'; const wrapWagtailIcon = type => { - if (type.icon) { + const isIconFont = type.icon && typeof type.icon === 'string'; + if (isIconFont) { return Object.assign(type, { icon: , });