Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UnorderedListIcon not showing #45

Closed
lovenangelo opened this issue May 11, 2024 · 1 comment
Closed

UnorderedListIcon not showing #45

lovenangelo opened this issue May 11, 2024 · 1 comment

Comments

@lovenangelo
Copy link

Screenshot from 2024-05-11 09-53-20

This is all my configuration for the editor but the bullet points icon is not showing

  <EditorProvider>
                    <Editor
                        containerProps={{
                            style: {
                                height: "250px",
                            },
                        }}
                        {...register("description")}
                        defaultValue={watch("description")}
                        value={watch("description")}
                        onChange={(e) => {
                            setDescription(e.target.value);
                            setValue("description", e.target.value);
                        }}
                    >
                        <Toolbar>
                            <BtnBold />
                            <BtnItalic />
                            <BtnUnderline />
                            <BtnBulletList />
                        </Toolbar>
                    </Editor>
                </EditorProvider>

this is the value on user input

"test


  • test
"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants