File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -698,15 +698,15 @@ MountConfigListView.prototype = _.extend({
698
698
* Trigger callback for all existing configurations
699
699
*/
700
700
whenSelectBackend : function ( callback ) {
701
- this . $el . find ( 'tbody tr:not(#addMountPoint)' ) . each ( function ( i , tr ) {
701
+ this . $el . find ( 'tbody tr:not(#addMountPoint):not(.externalStorageLoading) ' ) . each ( function ( i , tr ) {
702
702
var backend = $ ( tr ) . find ( '.backend' ) . data ( 'identifier' ) ;
703
703
callback ( $ ( tr ) , backend ) ;
704
704
} ) ;
705
705
this . on ( 'selectBackend' , callback ) ;
706
706
} ,
707
707
whenSelectAuthMechanism : function ( callback ) {
708
708
var self = this ;
709
- this . $el . find ( 'tbody tr:not(#addMountPoint)' ) . each ( function ( i , tr ) {
709
+ this . $el . find ( 'tbody tr:not(#addMountPoint):not(.externalStorageLoading) ' ) . each ( function ( i , tr ) {
710
710
var authMechanism = $ ( tr ) . find ( '.selectAuthMechanism' ) . val ( ) ;
711
711
callback ( $ ( tr ) , authMechanism , self . _allAuthMechanisms [ authMechanism ] [ 'scheme' ] ) ;
712
712
} ) ;
You can’t perform that action at this time.
0 commit comments