Fixed error message to include numbers
This commit is contained in:
parent
804f3d205f
commit
02d8b7e5ea
1 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ class WunderBar extends React.PureComponent<Props> {
|
||||||
onSubmit(uri, params);
|
onSubmit(uri, params);
|
||||||
} else {
|
} else {
|
||||||
this.props.doShowSnackBar({
|
this.props.doShowSnackBar({
|
||||||
message: __('Invalid LBRY URL entered. Only A-Z, a-z, and - allowed.'),
|
message: __('Invalid LBRY URL entered. Only A-Z, a-z, 0-9, and - allowed.'),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,7 +120,7 @@ class WunderBar extends React.PureComponent<Props> {
|
||||||
onSubmit(uri, params);
|
onSubmit(uri, params);
|
||||||
} else {
|
} else {
|
||||||
this.props.doShowSnackBar({
|
this.props.doShowSnackBar({
|
||||||
message: __('Invalid LBRY URL entered. Only A-Z, a-z, and - allowed.'),
|
message: __('Invalid LBRY URL entered. Only A-Z, a-z, 0-9, and - allowed.'),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue