dropZone inti

pull/1102/head
Vincent 5 years ago
parent 707200718d
commit 79e821e342

@ -68,6 +68,7 @@ $composition-container-height: 60px;
&__content { &__content {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%;
width: 100%; width: 100%;
outline: none; outline: none;
} }
@ -153,6 +154,8 @@ $composition-container-height: 60px;
flex-direction: column; flex-direction: column;
position: relative; position: relative;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden;
min-width: 370px;
scrollbar-width: 4px; scrollbar-width: 4px;
padding: $session-margin-sm $session-margin-lg; padding: $session-margin-sm $session-margin-lg;

@ -103,7 +103,7 @@ export class CreateGroupDialog extends React.Component<Props, State> {
> >
<div className="spacer-lg" /> <div className="spacer-lg" />
<p className={errorMessageClasses}>{this.state.errorMessage}</p> {this.state.errorDisplayed && <p className={errorMessageClasses}>{this.state.errorMessage}</p>}
<input <input
type="text" type="text"
id="group-name" id="group-name"

@ -37,6 +37,7 @@ interface State {
displayScrollToBottomButton: boolean; displayScrollToBottomButton: boolean;
messageFetchTimestamp: number; messageFetchTimestamp: number;
showOverlay: boolean;
showRecordingView: boolean; showRecordingView: boolean;
showOptionsPane: boolean; showOptionsPane: boolean;
showScrollButton: boolean; showScrollButton: boolean;
@ -72,6 +73,7 @@ export class SessionConversation extends React.Component<any, State> {
displayScrollToBottomButton: false, displayScrollToBottomButton: false,
messageFetchTimestamp: 0, messageFetchTimestamp: 0,
showOverlay: false,
showRecordingView: false, showRecordingView: false,
showOptionsPane: false, showOptionsPane: false,
showScrollButton: false, showScrollButton: false,
@ -179,7 +181,7 @@ export class SessionConversation extends React.Component<any, State> {
const groupSettingsProps = this.getGroupSettingsProps(); const groupSettingsProps = this.getGroupSettingsProps();
return ( return (
<div className="session-conversation"> <>
<div <div
className={classNames( className={classNames(
'conversation-item__content', 'conversation-item__content',

Loading…
Cancel
Save