From 1203a957e8a53f58fc4ec1bca128991fab170514 Mon Sep 17 00:00:00 2001 From: William Chong Date: Thu, 3 Nov 2022 09:29:01 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20broken=20absolute=20links?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/ISCNList.vue | 10 +++++----- components/TagList.vue | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/ISCNList.vue b/components/ISCNList.vue index bb6dcae..0d814b6 100644 --- a/components/ISCNList.vue +++ b/components/ISCNList.vue @@ -60,10 +60,10 @@ {{ schema }} @@ -183,13 +183,13 @@ export default { const [schema, value] = fingerprint.split('://') switch (schema) { case 'ipfs': - return [schema, `${IPFS_GATEWAY}/ipfs/${value}`] + return [schema, `${IPFS_GATEWAY}/ipfs/${value}`, 'blank'] case 'ar': - return [schema, `${ARWEAVE_GATEWAY}/${value}`] + return [schema, `${ARWEAVE_GATEWAY}/${value}`, 'blank'] default: - return [schema, `/fingerprint/${encodeURIComponent(fingerprint)}`] + return [schema, `./fingerprint/${encodeURIComponent(fingerprint)}`, ''] } }, isValid (record) { diff --git a/components/TagList.vue b/components/TagList.vue index 9898f2f..bd2fb3d 100644 --- a/components/TagList.vue +++ b/components/TagList.vue @@ -3,7 +3,7 @@

Featured Keywords