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 was archived by the owner on Sep 5, 2024. It is now read-only.
Currently the error message pushes mdSelect up a few pixels.
Quick fix I found, was to add the error spacer (a la mdInput) to the select directive postLink:
containerCtrl.input=element;// Add an error spacer div after our input to provide space for the char counter and any ng-messagesvarerrorsSpacer=angular.element('<div class="md-errors-spacer">');element.after(errorsSpacer);if(!containerCtrl.label){$mdAria.expect(element,'aria-label',element.attr('placeholder'));}
The text was updated successfully, but these errors were encountered:
vbanuelos
added a commit
to vbanuelos/material
that referenced
this issue
Jan 28, 2016
Currently the error message pushes mdSelect up a few pixels.
Quick fix I found, was to add the error spacer (a la mdInput) to the select directive postLink:
The text was updated successfully, but these errors were encountered: