Regression: Split date fields on export messages contextual bar (#18724)

pull/18726/head
Diego Sampaio 5 years ago committed by GitHub
parent b881005d08
commit 3ef09fac09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      client/channel/ExportMessages/index.js

@ -63,9 +63,14 @@ const FileExport = ({ onCancel, rid }) => {
return (
<FieldGroup>
<Field>
<Field.Label>{t('Date')}</Field.Label>
<Field.Label>{t('Date_From')}</Field.Label>
<Field.Row>
<TextInput type='date' value={dateFrom} onChange={handleDateFrom} />
</Field.Row>
</Field>
<Field>
<Field.Label>{t('Date_to')}</Field.Label>
<Field.Row>
<TextInput type='date' value={dateTo} onChange={handleDateTo} />
</Field.Row>
</Field>

Loading…
Cancel
Save