Skip to content

Commit 17463c4

Browse files
committed
post-merge fix
1 parent d7a411f commit 17463c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/views/dialogs/AddressPickerDialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ module.exports = createReactClass({
174174
} else {
175175
this._addAddressesToList([textInput]);
176176
}
177-
} else if (e.key === Key.COMMA || e.key === Key.TAB) {
177+
} else if (textInput && (e.key === Key.COMMA || e.key === Key.TAB)) {
178178
e.stopPropagation();
179179
e.preventDefault();
180180
this._addAddressesToList([textInput]);

0 commit comments

Comments
 (0)