diff --git a/wax-questions-service/src/MultipleDropDownService/components/DropDownComponent.js b/wax-questions-service/src/MultipleDropDownService/components/DropDownComponent.js index 0d65a40010a64db3410cbfbf7bec73202ce3fdc0..5435583a4f9f92614c284cec26f20df82ea59b0d 100644 --- a/wax-questions-service/src/MultipleDropDownService/components/DropDownComponent.js +++ b/wax-questions-service/src/MultipleDropDownService/components/DropDownComponent.js @@ -94,7 +94,6 @@ const IconRemove = styled(Icon)` let previousNode = ''; export default ({ setPosition, position }) => { - console.log('here'); const context = useContext(WaxContext); const { activeView, diff --git a/wax-questions-service/src/MultipleDropDownService/components/MultipleDropDownComponent.js b/wax-questions-service/src/MultipleDropDownService/components/MultipleDropDownComponent.js index 3c49a272c08f0985986bc8b1a9dfecbc0b4d7eec..a5515fe3848e68aac4e6bc9f322bf4ca41d51f94 100644 --- a/wax-questions-service/src/MultipleDropDownService/components/MultipleDropDownComponent.js +++ b/wax-questions-service/src/MultipleDropDownService/components/MultipleDropDownComponent.js @@ -13,7 +13,7 @@ const activeStylesSvg = css` fill: white !important; `; -const StyledIconActionContainer = styled.span` +const StyledIconActionContainer = styled.div` font-variant-numeric: lining-nums proportional-nums; display: inline-block; height: 24px; diff --git a/wax-questions-service/src/MultipleDropDownService/schema/multipleDropDownOptionNode.js b/wax-questions-service/src/MultipleDropDownService/schema/multipleDropDownOptionNode.js index 720450e22640c6770fc4ccf1c9f1cdd1df22b33b..89f5af2a362962b6ae32b0e720cd9be4b8d0954a 100644 --- a/wax-questions-service/src/MultipleDropDownService/schema/multipleDropDownOptionNode.js +++ b/wax-questions-service/src/MultipleDropDownService/schema/multipleDropDownOptionNode.js @@ -11,7 +11,7 @@ const multipleDropDownOptionNode = { atom: true, parseDOM: [ { - tag: 'span.multiple-drop-down-option', + tag: 'div.multiple-drop-down-option', getAttrs(dom) { return { id: dom.getAttribute('id'), @@ -25,7 +25,7 @@ const multipleDropDownOptionNode = { ], toDOM(node) { return [ - 'span', + 'div', { id: node.attrs.id, class: node.attrs.class,