Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
a3680d2a
Commit
a3680d2a
authored
Dec 03, 2014
by
Paul Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix active filters when named_filter_urls are used
parent
9871d361
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
filters-1.0.0.js
flask_admin/static/admin/js/filters-1.0.0.js
+2
-2
No files found.
flask_admin/static/admin/js/filters-1.0.0.js
View file @
a3680d2a
...
...
@@ -120,7 +120,7 @@ var AdminFilters = function(element, filtersElement, filterGroups, activeFilters
// if one of the subfilters are selected, use that subfilter to create the input field
var
filterSelection
=
0
;
$
.
each
(
subfilters
,
function
(
subfilterIndex
,
subfilter
)
{
if
(
this
.
arg
==
selectedIndex
)
{
if
(
this
.
index
==
selectedIndex
)
{
$select
.
append
(
$
(
'<option/>'
).
attr
(
'value'
,
subfilter
.
arg
).
attr
(
'selected'
,
true
).
text
(
subfilter
.
operation
));
filterSelection
=
subfilterIndex
;
}
else
{
...
...
@@ -178,4 +178,4 @@ var AdminFilters = function(element, filtersElement, filterGroups, activeFilters
});
lastCount
+=
1
;
};
\ No newline at end of file
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment