Skip to content

Commit

Permalink
[Docs]: remove border radius from RTE example
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseyManetov committed Dec 11, 2024
1 parent 2677acf commit 80e053f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from 'react';
import { FileUploadResponse, useUuiContext } from '@epam/uui-core';
import { ErrorNotification, Panel } from '@epam/promo';
import { ErrorNotification, FlexRow } from '@epam/promo';
import { SlateEditor, defaultPlugins, imagePlugin, videoPlugin, attachmentPlugin, toDoListPlugin, baseMarksPlugin,
linkPlugin, iframePlugin, notePlugin, separatorPlugin, uploadFilePlugin, tablePlugin, quotePlugin, colorPlugin,
superscriptPlugin, headerPlugin, listPlugin, placeholderPlugin, EditorValue, codeBlockPlugin,
Expand Down Expand Up @@ -56,7 +56,7 @@ export default function WithInnerScrollExample() {
];

return (
<Panel rawProps={ { style: { width: '100%', height: '350px' } } }>
<FlexRow rawProps={ { style: { width: '100%', height: '350px' } } }>
<SlateEditor
value={ value }
onValueChange={ setValue }
Expand All @@ -68,6 +68,6 @@ export default function WithInnerScrollExample() {
fontSize="14"
scrollbars
/>
</Panel>
</FlexRow>
);
}

0 comments on commit 80e053f

Please sign in to comment.