Skip to content
Snippets Groups Projects
Commit 212963d5 authored by chris's avatar chris
Browse files

fix node tag import

parent dc75a634
No related branches found
No related tags found
1 merge request!349Multiple single
......@@ -70,7 +70,7 @@ const Editors = () => {
case 'ncbi':
return <NCBI />;
default:
return <HHMI />;
return <Editoria />;
}
};
......
......@@ -13,7 +13,7 @@ const trueFalseSingleCorrectNode = {
parseDOM: [
{
tag: 'true-false-single-correct-option',
tag: 'div.true-false-single-correct-option',
getAttrs(dom) {
return {
id: dom.getAttribute('id'),
......
......@@ -24,7 +24,7 @@ const FeedBackInput = styled.input`
export default ({ node, view, getPos }) => {
const context = useContext(WaxContext);
const [feedBack, setFeedBack] = useState('');
const [feedBack, setFeedBack] = useState(' ');
const [isFirstRun, setFirstRun] = useState(true);
const [typing, setTyping] = useState(false);
const feedBackRef = useRef(null);
......
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