Ionic - ion-searchbar - searching only when enter is pressed?

In my Enter Key does not fire on Firefox.
Enter Key works on Chrome browser on Windows 10 but not in Firefox.
On Android mobile the event is working from the magnifier (guess enter) from the virtual keyboard.
To fix, I am thinking adding an explicit “Go” button next tot he ion-searchbar
Any thoughts? Thank you.

<ion-navbar>
<ion-searchbar #SearchBar
        (search)="SearchItems($event)"
        (ionCancel)="SearchToggle()"
        [hidden]="!SearchFieldOn_"
        placeholder="Search"
        debounce=1000
        [class.SearchBar]="true"
        [showCancelButton]="true"></ion-searchbar>
</ion-navbar>