upsatish / AWSConsoleNavigator

AWS Console Navigator browser extension. Navigate to resources in the AWS console from the Omnibox.
GNU General Public License v3.0
2 stars 0 forks source link

Omnibox input suggestion does not show region until more text is entered #13

Open upsatish opened 3 years ago

upsatish commented 3 years ago

Omnibox input suggests "Region is set to undefined" on first input. Probably something to do with the onInputChanged listener not being able to read the region variable when invoked

chrome.omnibox.onInputChanged.addListener(
  function (text, suggest) {
    ...
  });
upsatish commented 3 years ago

Maybe another listener should handle the omnibox suggestion?