Skip to content
Snippets Groups Projects
Commit 8fc1e5a0 authored by chris's avatar chris
Browse files

fix

parent f63e8591
No related branches found
No related tags found
1 merge request!458Hhmi accessibility
This commit is part of merge request !458. Comments created here will be created in the context of that merge request.
......@@ -50,7 +50,7 @@ const DropDownMenu = styled.div`
position: absolute;
width: 170px;
max-height: 150px;
overflow-y: scroll;
overflow-y: auto;
z-index: 2;
span {
......@@ -166,7 +166,7 @@ const DropComponent = ({ getPos, node, view }) => {
tabIndex="0"
type="button"
>
<span>Table Options</span> <StyledIcon name="expand" />
<span>Select Option</span> <StyledIcon name="expand" />
</DropDownButton>
<DropDownMenu isOpen={isOpen} role="menu">
{node.attrs.options.map((option, index) => {
......@@ -187,7 +187,7 @@ const DropComponent = ({ getPos, node, view }) => {
</DropDownMenu>
</Wrapper>
),
[node.attrs.options, selectedOption],
[node.attrs.options, selectedOption, isOpen],
);
return MultipleDropDown;
......
......@@ -16,10 +16,10 @@ import MoveCursorPlugin from './plugins/MoveCursorPlugin';
class MultipleChoiceQuestionService extends Service {
boot() {
this.app.PmPlugins.add(
'moveCursorPlugin',
MoveCursorPlugin('moveCursorPlugin'),
);
// this.app.PmPlugins.add(
// 'moveCursorPlugin',
// MoveCursorPlugin('moveCursorPlugin'),
// );
}
register() {
......
......@@ -104,7 +104,7 @@ const ContainerEditor = ({ node, view, getPos }) => {
const plugins = [keymap(createKeyBindings()), ...app.getPlugins()];
finalPlugins = finalPlugins.concat([...plugins]);
console.log(finalPlugins);
useEffect(() => {
WaxOverlays = ComponentPlugin('waxOverlays');
......
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