From: Marc Foley Date: Mon, 9 Jun 2025 14:15:17 +0000 (+0100) Subject: Tidyup url X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=13d534e6931f0bdf0a49d2ebab9af6be75f5072e;p=thirdparty%2Fgoogle%2Ffonts.git Tidyup url --- diff --git a/.ci/tags.html b/.ci/tags.html index febb25a233..00304f7eab 100644 --- a/.ci/tags.html +++ b/.ci/tags.html @@ -385,14 +385,10 @@ function axesCombos(axes) { }, mounted() { const urlParams = new URLSearchParams(window.location.search); - const category = urlParams.get('category'); const categories = urlParams.get('categories'); const filter = urlParams.get('filter'); const sort_ = urlParams.get('sort'); const reverse = urlParams.get('reverse'); - if (category) { - this.currentCategory = category; - } if (categories) { this.currentCategories = categories.split(","); } @@ -546,11 +542,6 @@ function axesCombos(axes) { } else { url.searchParams.delete('commit'); } - if (this.currentCategory) { - url.searchParams.set('category', this.currentCategory); - } else { - url.searchParams.delete('category'); - } if (this.currentCategories.length > 0) { url.searchParams.set('categories', this.currentCategories.join(",")); } else { @@ -582,7 +573,7 @@ function axesCombos(axes) { }, edited(family) { this.isEdited = true; - this.history.push(`* ${family.name},${family.category},${family.Weight}`); + this.history.push(`* ${family.name},${family.category},${family.score}`); this.saveSession(); }, parseUnicode(str) {