You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
Currently the width for md-autocomplete isn't set. This is causing it to have width: 0; if you put it in a toolbar which makes it not show up. I think setting width: 190px; like md-input-container works quite well but It should at least be set to something.
Heres a quick fix if you can't wait
md-autocomplete {
// Use 190px like md-input-container
width: 190px;
}
The text was updated successfully, but these errors were encountered:
Currently the width for
md-autocomplete
isn't set. This is causing it to havewidth: 0;
if you put it in a toolbar which makes it not show up. I think settingwidth: 190px;
likemd-input-container
works quite well but It should at least be set to something.Heres a quick fix if you can't wait
The text was updated successfully, but these errors were encountered: