summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-05-25 09:05:14 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-05-25 09:05:14 +0900
commit7f54c8fa2a7265dc6c5790daf96e9056604a4c5c (patch)
treea91966c590c8e711b02420d051ca0c4c6a9b2611 /src
parent:art: (diff)
downloadsharkey-7f54c8fa2a7265dc6c5790daf96e9056604a4c5c.tar.gz
sharkey-7f54c8fa2a7265dc6c5790daf96e9056604a4c5c.tar.bz2
sharkey-7f54c8fa2a7265dc6c5790daf96e9056604a4c5c.zip
:art:
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/views/components/url.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/url.vue b/src/client/app/common/views/components/url.vue
index 1c437d92b4..2829812f99 100644
--- a/src/client/app/common/views/components/url.vue
+++ b/src/client/app/common/views/components/url.vue
@@ -5,7 +5,7 @@
<span class="hostname">{{ hostname }}</span>
<span class="port" v-if="port != ''">:{{ port }}</span>
</template>
- <span class="pathname" v-if="pathname != ''">{{ pathname }}</span>
+ <span class="pathname" v-if="pathname != ''">{{ self ? pathname.substr(1) : pathname }}</span>
<span class="query">{{ query }}</span>
<span class="hash">{{ hash }}</span>
<fa icon="external-link-square-alt" v-if="!self"/>