From: Marc Foley Date: Fri, 23 May 2025 13:20:42 +0000 (+0100) Subject: tags.html: add red left hand border to edited/new tags X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F9497%2Fhead;p=thirdparty%2Fgoogle%2Ffonts.git tags.html: add red left hand border to edited/new tags --- diff --git a/.ci/tags.html b/.ci/tags.html index cffd2749b..4845d9614 100644 --- a/.ci/tags.html +++ b/.ci/tags.html @@ -6,6 +6,12 @@ + +
@@ -250,7 +256,7 @@ function axesCombos(axes) { Vue.component('family-item', { props: ['family', 'ready', 'index', 'category'], template: ` -
+
{{ familyTag }} {{ familyDisplayName }} @@ -261,7 +267,6 @@ function axesCombos(axes) {
Loading...
-
`, methods: { @@ -270,6 +275,7 @@ function axesCombos(axes) { console.log(this.$root.sampleText); }, edited() { + this.family.isEdited = true; this.$emit('edited', this.family); }, removeFamily() { @@ -590,6 +596,7 @@ function axesCombos(axes) { this.seen.add(tagKey); this.tags.push(newFamily); this.history.push(`+ ${newFamily.displayName},${newFamily.category},${newFamily.score}`); + newFamily.isEdited = true; } this.saveSession(); },