diff options
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/views/components/url.vue | 2 |
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"/> |