From c8b4e742dd47e11be40aed98fa7949505fb9025f Mon Sep 17 00:00:00 2001 From: David Taylor Date: Mon, 6 Jan 2025 18:54:40 +0000 Subject: [PATCH] DEV: Update more fa6 icon names (#190) --- .../discourse/controllers/docs-index.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/assets/javascripts/discourse/controllers/docs-index.js b/assets/javascripts/discourse/controllers/docs-index.js index 7daa609..4277a2f 100644 --- a/assets/javascripts/discourse/controllers/docs-index.js +++ b/assets/javascripts/discourse/controllers/docs-index.js @@ -111,17 +111,17 @@ export default class DocsIndexController extends Controller { @discourseComputed("categorySort") categorySortNumericIcon(catSort) { if (catSort.type === "numeric" && catSort.direction === "asc") { - return "sort-numeric-down"; + return "arrow-down-1-9"; } - return "sort-numeric-up"; + return "arrow-up-1-9"; } @discourseComputed("categorySort") categorySortAlphaIcon(catSort) { if (catSort.type === "alpha" && catSort.direction === "asc") { - return "sort-alpha-down"; + return "arrow-down-a-z"; } - return "sort-alpha-up"; + return "arrow-up-a-z"; } @discourseComputed("tags", "tagSort", "tagFilter") @@ -184,17 +184,17 @@ export default class DocsIndexController extends Controller { @discourseComputed("tagSort") tagSortNumericIcon(tagSort) { if (tagSort.type === "numeric" && tagSort.direction === "asc") { - return "sort-numeric-down"; + return "arrow-down-1-9"; } - return "sort-numeric-up"; + return "arrow-up-1-9"; } @discourseComputed("tagSort") tagSortAlphaIcon(tagSort) { if (tagSort.type === "alpha" && tagSort.direction === "asc") { - return "sort-alpha-down"; + return "arrow-down-a-z"; } - return "sort-alpha-up"; + return "arrow-up-a-z"; } @discourseComputed("topics", "isSearching", "filterSolved")