md-autocomplete 下拉列表大小不稳定

md-autocomplete dropdown size not stable

我正在使用现有的 md-autocomplete 输入。

我的问题是下拉列表的大小是可变的。 它可能在下拉列表中有很多结果,但它仍然将 md-autocomplete 的大小限制为 2。我们可以滚动以访问所有结果。

但这不是它应该的。

我怎样才能强制它一直显示相同的尺寸?或者真正的自动尺寸。

尝试设置样式:

.md-virtual-repeat-scroller{
   height: 506px; 
  max-height: 506px; 
  min-height: 506px; 
}

md-virtual-repeat-container{
  height: 506px; 
  max-height: 506px; 
  min-height: 506px; 
}

Demo Codepen