mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-24 05:29:51 +03:00
Merge pull request #69 from gitbutlerapp/ian/gb-125-changed-file-names-getting-truncated
Ian/gb 125 changed file names getting truncated
This commit is contained in:
commit
38b6629159
@ -39,6 +39,11 @@
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
.scrollbar-hidden::-webkit-scrollbar {
|
||||
-webkit-appearance: none;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
|
||||
/* COMMAND PALETTE */
|
||||
|
@ -283,11 +283,16 @@
|
||||
</div>
|
||||
{:else}
|
||||
<div class="rounded border border-yellow-400 bg-yellow-500 p-4 font-mono text-yellow-900">
|
||||
<ul class="w-80 truncate pl-4">
|
||||
<ul class="pl-4">
|
||||
{#each $filesStatus as activity}
|
||||
<li class="list-disc">
|
||||
{activity.status.slice(0, 1)}
|
||||
<span use:collapsable={{ value: activity.path, separator: '/' }} />
|
||||
<div class="w-full flex gap-2 ">
|
||||
{activity.status.slice(0, 1)}
|
||||
<div
|
||||
class="truncate"
|
||||
use:collapsable={{ value: activity.path, separator: '/' }}
|
||||
/>
|
||||
</div>
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user