Bug 1253072 - Small bug fixes to the Storage Inspector functionality. r=miker

MozReview-Commit-ID: 7s1Ua2ecy0I
This commit is contained in:
Tim Nguyen
2016-03-02 14:52:00 -05:00
parent fc6a469428
commit 4879c49b91
3 changed files with 3 additions and 2 deletions

View File

@@ -452,11 +452,11 @@ TableWidget.prototype = {
if (this.filteredValue == value) {
return;
}
this.filteredValue = value;
if (!value) {
this.emit(EVENTS.TABLE_FILTERED, []);
return;
}
this.filteredValue = value;
// Shouldn't be case-sensitive
value = value.toLowerCase();