bug #3449659 [navi] Fast filter broken with table tree

This commit is contained in:
dimka
2011-12-07 16:13:16 +05:30
committed by Madhura Jayaratne
parent 6e0a10494f
commit 3713680c37
2 changed files with 2 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog
- bug #3384035 [display] Problems regarding ShowTooltipAliasTB
- bug #3306875 [edit] Can't rename a database that contains views
- bug #3452506 [edit] Unable to move tables with triggers
- bug #3449659 [navi] Fast filter broken with table tree
3.4.8.0 (2011-12-01)
- bug #3425230 [interface] enum data split at space char (more space to edit)

View File

@@ -152,7 +152,7 @@ function fast_filter(value){
if (value && $elem.html().toLowerCase().indexOf(lowercase_value) == -1) {
$elem.parent().hide();
} else {
$elem.parent().show();
$elem.parents('li').show();
}
});
}