Skip to content
Snippets Groups Projects
Commit 62cc09c2 authored by chris's avatar chris
Browse files

select option

parent 5ef6676c
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ const Hhmi = () => {
value={content}
readonly={readOnly}
layout={HhmiLayout}
onChange={source => console.log(source)}
// onChange={source => console.log(source)}
/>
</>
);
......
......@@ -23,7 +23,11 @@ export default class MultipleDropDownContainerNodeView extends QuestionsNodeView
}
stopEvent(event) {
if (event.target.type === 'textarea' || event.target.type === 'text') {
if (
event.target.type === 'textarea' ||
event.target.type === 'text' ||
!event.target.type
) {
return true;
}
const innerView = this.context.pmViews[this.node.attrs.id];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment