Merge and add export support for the modified MAudioBody

This commit is contained in:
Jaiwanth 2021-07-02 10:40:48 +05:30
commit 190ccb6f00
118 changed files with 1959 additions and 1772 deletions

View file

@ -269,7 +269,7 @@ interface IProps {
showReactions?: boolean;
// which layout to use
layout: Layout;
layout?: Layout;
// whether or not to show flair at all
enableFlair?: boolean;
@ -289,10 +289,10 @@ interface IProps {
permalinkCreator?: RoomPermalinkCreator;
// Symbol of the root node
as?: string
as?: string;
// whether or not to always show timestamps
alwaysShowTimestamps?: boolean
alwaysShowTimestamps?: boolean;
}
interface IState {
@ -324,6 +324,7 @@ export default class EventTile extends React.Component<IProps, IState> {
// no-op function because onHeightChanged is optional yet some sub-components assume its existence
onHeightChanged: function() {},
forExport: false,
layout: Layout.Group,
};
static contextType = MatrixClientContext;