Browse Source

Make it possible to use SVG icons in Draftail

Thibaud Colas 7 năm trước cách đây
mục cha
commit
e272aba222
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      client/src/components/Draftail/index.js

+ 2 - 1
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: <Icon name={type.icon} />,
     });