fix: correctly display links to self instance URL

Closes #9270

Co-authored-by: GitHub <futchitwo>
This commit is contained in:
ThatOneCalculator 2023-05-02 14:45:09 -07:00
parent 28dd7e0393
commit 087f3aaaa2
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -3,7 +3,7 @@
:is="self ? 'MkA' : 'a'"
ref="el"
class="ieqqeuvs _link"
:[attr]="self ? url.substr(local.length) : url"
:[attr]="self ? props.url.substring(local.length) : props.url"
:rel="rel"
:target="target"
@contextmenu.stop="() => {}"
@ -18,7 +18,7 @@
<span class="self">{{ hostname }}</span>
</template>
<span v-if="pathname != ''" class="pathname">{{
self ? pathname.substr(1) : pathname
self ? pathname.substring(1) : pathname
}}</span>
<span class="query">{{ query }}</span>
<span class="hash">{{ hash }}</span>