mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-08 23:19:04 +01:00
fixed click on favorite (funnel) always resets all filters, not change to default favorite selected via radio buttons
This commit is contained in:
parent
947c2f0462
commit
84c611cb2c
@ -239,8 +239,7 @@ var et2_favorites = et2_dropdown_button.extend([et2_INextmatchHeader],
|
|||||||
{
|
{
|
||||||
if(this.nextmatch)
|
if(this.nextmatch)
|
||||||
{
|
{
|
||||||
this.nextmatch.activeFilters = filters;
|
this.nextmatch.applyFilters(filters);
|
||||||
this.nextmatch.applyFilters();
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -252,7 +251,7 @@ var et2_favorites = et2_dropdown_button.extend([et2_INextmatchHeader],
|
|||||||
// Apply preferred filter - make sure it's an object, and not a reference
|
// Apply preferred filter - make sure it's an object, and not a reference
|
||||||
if(this.preferred && this.stored_filters[this.preferred])
|
if(this.preferred && this.stored_filters[this.preferred])
|
||||||
{
|
{
|
||||||
this.set_nm_filters(jQuery.extend({},this.stored_filters[this.preferred].filter));
|
this.set_nm_filters(jQuery.extend({},this.stored_filters[this.preferred].state));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user