mirror of
https://github.com/Damillora/Shioriko.git
synced 2024-11-22 04:17:33 +00:00
fix:replace underscore with spaces on display
This commit is contained in:
parent
2cc9705845
commit
ba86dd3c01
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
let tagType = tag.split(":")[0] ?? "";
|
let tagType = tag.split(":")[0] ?? "";
|
||||||
let tagName = tag.split(":")[1] ?? "";
|
let tagName = tag.split(":")[1] ?? "";
|
||||||
|
let tagDisplay = tagName.split("_").join(" ");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Link class="button is-rounded is-primary is-small m-1" to="/posts?tags={tagName}">{tagName}</Link>
|
<Link class="button is-rounded is-primary is-small m-1" to="/posts?tags={tagName}">{tagDisplay}</Link>
|
||||||
|
Loading…
Reference in New Issue
Block a user