Compare commits

...

3 commits

Author SHA1 Message Date
Brendan Kellam
17714f5f3e
Merge 7341a49407 into 095474a901 2025-12-11 09:46:06 -08:00
msukkari
095474a901 update perm syncing docs
Some checks are pending
Publish to ghcr / build (linux/arm64, blacksmith-8vcpu-ubuntu-2204-arm) (push) Waiting to run
Publish to ghcr / build (linux/amd64, blacksmith-4vcpu-ubuntu-2404) (push) Waiting to run
Publish to ghcr / merge (push) Blocked by required conditions
Update Roadmap Released / update (push) Waiting to run
2025-12-11 06:46:20 -08:00
bkellam
7341a49407 fix 2025-08-19 11:13:30 -07:00
5 changed files with 8 additions and 6 deletions

View file

@ -1,14 +1,11 @@
--- ---
title: "Permission syncing" title: "Permission syncing"
sidebarTitle: "Permission syncing" sidebarTitle: "Permission syncing"
tag: "experimental"
--- ---
import LicenseKeyRequired from '/snippets/license-key-required.mdx' import LicenseKeyRequired from '/snippets/license-key-required.mdx'
import ExperimentalFeatureWarning from '/snippets/experimental-feature-warning.mdx'
<LicenseKeyRequired /> <LicenseKeyRequired />
<ExperimentalFeatureWarning />
# Overview # Overview

View file

@ -138,7 +138,7 @@ export const CodePreview = ({
}} }}
title={file.filepath} title={file.filepath}
> >
{file.filepath} <span>{file.filepath}</span>
</span> </span>
</div> </div>

View file

@ -52,7 +52,7 @@ export const Entry = ({
<div className="overflow-hidden flex-1 min-w-0"> <div className="overflow-hidden flex-1 min-w-0">
<Tooltip> <Tooltip>
<TooltipTrigger asChild> <TooltipTrigger asChild>
<p className="overflow-hidden text-ellipsis whitespace-nowrap truncate-start">{displayName}</p> <p className="overflow-hidden text-ellipsis whitespace-nowrap truncate-start"><span>{displayName}</span></p>
</TooltipTrigger> </TooltipTrigger>
<TooltipContent side="right" className="max-w-sm"> <TooltipContent side="right" className="max-w-sm">
<p className="font-mono text-sm break-all whitespace-pre-wrap">{displayName}</p> <p className="font-mono text-sm break-all whitespace-pre-wrap">{displayName}</p>

View file

@ -313,6 +313,11 @@
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.truncate-start > * {
direction: ltr;
unicode-bidi: embed;
}
@layer base { @layer base {
* { * {
@apply border-border; @apply border-border;

View file

@ -30,7 +30,7 @@ export const FileListItem = ({
pathType: 'blob', pathType: 'blob',
})} })}
> >
{path} <span>{path}</span>
</Link> </Link>
</div> </div>
) )