diff options
author | (quasar) nebula <towerofnix@gmail.com> | 2021-05-27 12:17:14 -0300 |
---|---|---|
committer | (quasar) nebula <towerofnix@gmail.com> | 2021-05-27 12:17:14 -0300 |
commit | d57e22972213bf45eda1ffa0ba290b5bffffc195 (patch) | |
tree | 023650cb7906034525b04adb73e4151d444bfa8f | |
parent | d41853b617e1b0e7fa41309ff0d42611305c3149 (diff) |
fix colors showing in chronology links
-rwxr-xr-x | src/upd8.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/upd8.js b/src/upd8.js index 56fdcf43..35f7d6ed 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -5158,14 +5158,14 @@ function chronologyLinks(currentThing, { const next = releasedThings[index + 1]; const parts = [ previous && linkAnythingMan(previous, { - link, - text: strings('misc.nav.previous'), - wikiData + link, wikiData, + color: false, + text: strings('misc.nav.previous') }), next && linkAnythingMan(next, { - link, - text: strings('misc.nav.next'), - wikiData + link, wikiData, + color: false, + text: strings('misc.nav.next') }) ].filter(Boolean); |