Skip to content

Commit

Permalink
Fix text-area-rich-text component
Browse files Browse the repository at this point in the history
  • Loading branch information
cgero-eth committed Aug 20, 2024
1 parent 609317d commit 791e164
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Fix Storybook stories path of `<Checkbox />` core components
- Move `<Radio />` core components under `/forms` folder
- Fix `<InputFileAvatar />` props interface to only expose supported props
- Fix customisation of `z-index` property on `<TextAreaRichText />` core component

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const TextAreaRichText: React.FC<ITextAreaRichTextProps> = (props) => {
<InputContainer
disabled={disabled}
className={classNames(className, {
'fixed left-0 top-0 z-[var(--ods---ods-text-area-rich-text-expanded-z-index)] h-screen w-full [&>label]:hidden':
'fixed left-0 top-0 z-[var(--ods-text-area-rich-text-expanded-z-index)] h-screen w-full [&>label]:hidden':
isExpanded,
})}
wrapperClassName={classNames('grow overflow-hidden', { '!rounded-none': isExpanded })}
Expand Down

0 comments on commit 791e164

Please sign in to comment.