summaryrefslogtreecommitdiff
path: root/js/guix-packages.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/guix-packages.js')
-rw-r--r--js/guix-packages.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/guix-packages.js b/js/guix-packages.js
index 27d559f..d4e975a 100644
--- a/js/guix-packages.js
+++ b/js/guix-packages.js
@@ -30,7 +30,7 @@ guix.controller = function() {
this.packages.then(this.visiblePackages);
this.doSearch = function() {
- var regexp = new RegExp(this.searchTerm());
+ var regexp = new RegExp(this.searchTerm(), "i");
this.visiblePackages(this.packages().filter(function(package) {
return regexp.test(package.name) ||