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
The search form in Django Suit no longer works in IE10. It appears to be still submitting forms elements with empty name attributes. (yay) so django is redirecting search requests without filtering results.
Line: 60 in suit.js will need to be changed to something like this
if (select_name==undefined){
$field.removeAttr('name')
}else{
$field.attr('name', select_name)
}
The text was updated successfully, but these errors were encountered:
The search form in Django Suit no longer works in IE10. It appears to be still submitting forms elements with empty name attributes. (yay) so django is redirecting search requests without filtering results.
Line: 60 in suit.js will need to be changed to something like this
if (select_name==undefined){
$field.removeAttr('name')
}else{
$field.attr('name', select_name)
}
The text was updated successfully, but these errors were encountered: