Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ForwardForm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Button from '../Button';
import styles from './styles.scss';
import i18n from './i18n';

const cleanRegex = /[^\d+*-]/g;
const cleanRegex = /[^\d+*-\s]/g;

function ForwardNumbers({
numbers,
Expand Down
3 changes: 2 additions & 1 deletion src/components/ReplyWithMessage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function TimeInput(props) {
<div className={styles.timeInput}>
<span className={styles.timeValue}>
<input
maxLength={3}
maxLength={2}
value={props.timeValue}
onChange={props.onTimeValueChange}
ref={props.inputRef}
Expand Down Expand Up @@ -249,6 +249,7 @@ export default class ReplyWithMessage extends Component {
classnames(styles.replyButton, disableButton ? styles.disabled : null)
}
onClick={this.onReply}
disabled={disableButton}
>
<span className={styles.buttonText}>
{i18n.getString('send', currentLocale)}
Expand Down