mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-06 14:46:04 +02:00
fix location text truncation and overflow issues (#1606)
This commit is contained in:
@@ -6,18 +6,17 @@
|
|||||||
<TooltipWrapper :content="tooltipContent" :disabled="tooltipDisabled" :delay-duration="300" side="top">
|
<TooltipWrapper :content="tooltipContent" :disabled="tooltipDisabled" :delay-duration="300" side="top">
|
||||||
<div
|
<div
|
||||||
:class="locationClasses"
|
:class="locationClasses"
|
||||||
class="inline-flex min-w-0 flex-nowrap items-center overflow-hidden"
|
class="inline-flex min-w-0 flex-nowrap items-center overflow-hidden truncate"
|
||||||
@click="handleShowWorldDialog">
|
@click="handleShowWorldDialog">
|
||||||
<Spinner v-if="isTraveling" class="mr-1 shrink-0" />
|
<Spinner v-if="isTraveling" class="mr-1 shrink-0" />
|
||||||
<span class="min-w-0 truncate">{{ text }}</span>
|
<span class="min-w-0 flex-1 truncate">
|
||||||
<span v-if="showInstanceIdInLocation && instanceName" class="ml-1 whitespace-nowrap">{{
|
<span>{{ text }}</span>
|
||||||
` · #${instanceName}`
|
<span v-if="showInstanceIdInLocation && instanceName" class="ml-1">{{
|
||||||
}}</span>
|
` · #${instanceName}`
|
||||||
<span
|
}}</span>
|
||||||
v-if="groupName"
|
<span v-if="groupName" class="ml-0.5 cursor-pointer" @click.stop="handleShowGroupDialog">
|
||||||
class="ml-0.5 whitespace-nowrap cursor-pointer"
|
({{ groupName }})
|
||||||
@click.stop="handleShowGroupDialog">
|
</span>
|
||||||
({{ groupName }})
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</TooltipWrapper>
|
</TooltipWrapper>
|
||||||
|
|||||||
Reference in New Issue
Block a user