« get me outta code hell

content: generatePreviousNextLinks: don't color prev/next links - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-06-22 16:04:35 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-06-22 16:04:35 -0300
commita5e6bb93032ee32f2fa19689455e6cb8dd9f3da9 (patch)
treedaeeb81c7db2d8dca7593737516dc6ca5bb6c042
parent895105507740f4015caa14d7b975b028088114f6 (diff)
content: generatePreviousNextLinks: don't color prev/next links
-rw-r--r--src/content/dependencies/generatePreviousNextLinks.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content/dependencies/generatePreviousNextLinks.js b/src/content/dependencies/generatePreviousNextLinks.js
index ab10b729..6cffcef4 100644
--- a/src/content/dependencies/generatePreviousNextLinks.js
+++ b/src/content/dependencies/generatePreviousNextLinks.js
@@ -15,6 +15,7 @@ export default {
       !html.isBlank(slots.previousLink) &&
         slots.previousLink.slots({
           tooltip: true,
+          color: false,
           attributes: {id: 'previous-button'},
           content: language.$('misc.nav.previous'),
         }),
@@ -22,6 +23,7 @@ export default {
       !html.isBlank(slots.nextLink) &&
         slots.nextLink?.slots({
           tooltip: true,
+          color: false,
           attributes: {id: 'next-button'},
           content: language.$('misc.nav.next'),
         }),