mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-17 02:01:29 +10:00
release: v4.3.1
This commit is contained in:
@ -32,7 +32,13 @@ export const SummarySection = () => {
|
||||
<RichInput
|
||||
content={section.content}
|
||||
footer={(editor) => (
|
||||
<AiActions value={editor.getText()} onChange={editor.commands.setContent} />
|
||||
<AiActions
|
||||
value={editor.getText()}
|
||||
onChange={(value) => {
|
||||
editor.commands.setContent(value, true);
|
||||
setValue("sections.summary.content", value);
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
onChange={(value) => {
|
||||
setValue("sections.summary.content", value);
|
||||
|
||||
Reference in New Issue
Block a user