regex typo fix
This commit is contained in:
parent
6f271ffc91
commit
81fadffa14
|
@ -152,8 +152,8 @@ class AddLinkDialog extends HookWidget {
|
||||||
final String selection;
|
final String selection;
|
||||||
|
|
||||||
AddLinkDialog(this.selection)
|
AddLinkDialog(this.selection)
|
||||||
: title = selection.startsWith('http?s://') ? '' : selection,
|
: title = selection.startsWith('https?://') ? '' : selection,
|
||||||
url = selection.startsWith('http?s://') ? selection : '';
|
url = selection.startsWith('https?://') ? selection : '';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|
Loading…
Reference in New Issue