Co-authored-by: Federico Bernal <64086728+FedericoBernal@users.noreply.github.com>
This commit is contained in:
Matias Lera 2021-11-15 15:01:23 -03:00 коммит произвёл GitHub
Родитель 499cbe271b
Коммит 1a7522945e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -42,7 +42,7 @@ export class MDIComponent extends React.Component<MDIProps> {
public render(): React.ReactNode {
const { presentationModeEnabled, owningEditor = '' } = this.props;
return (
<div aria-label={`${owningEditor} editor`} className={styles.mdi} role="region">
<div aria-label={`${owningEditor} editor`} className={styles.mdi}>
{!presentationModeEnabled && <TabBarContainer owningEditor={owningEditor} />}
<DocumentsContainer owningEditor={owningEditor} />
</div>