feat(chat): fixed linter

pull/14968/head jitsi-meet_9655
Calin-Teodor 10 months ago committed by Calinteodor
parent a2aca30d57
commit 06b727ae1a
  1. 1
      react/features/chat/components/native/ChatInputBar.tsx
  2. 2
      react/features/chat/components/web/ChatInput.tsx

@ -10,7 +10,6 @@ import { ASPECT_RATIO_WIDE } from '../../../base/responsive-ui/constants';
import IconButton from '../../../base/ui/components/native/IconButton';
import Input from '../../../base/ui/components/native/Input';
import { BUTTON_TYPES } from '../../../base/ui/constants.native';
import { CHAR_LIMIT } from '../../constants';
import styles from './styles';

@ -137,8 +137,8 @@ class ChatInput extends Component<IProps, IState> {
icon = { this.props._areSmileysDisabled ? undefined : IconFaceSmile }
iconClick = { this._toggleSmileysPanel }
id = 'chat-input-messagebox'
maxRows = { 5 }
maxLength = { CHAR_LIMIT }
maxRows = { 5 }
onChange = { this._onMessageChange }
onKeyPress = { this._onDetectSubmit }
placeholder = { this.props.t('chat.messagebox') }

Loading…
Cancel
Save