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 failed
Publish to ghcr / build (linux/arm64, blacksmith-8vcpu-ubuntu-2204-arm) (push) Has been cancelled
Update Roadmap Released / update (push) Has been cancelled
Publish to ghcr / build (linux/amd64, blacksmith-4vcpu-ubuntu-2404) (push) Has been cancelled
Publish to ghcr / merge (push) Has been cancelled
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"
sidebarTitle: "Permission syncing"
tag: "experimental"
---
import LicenseKeyRequired from '/snippets/license-key-required.mdx'
import ExperimentalFeatureWarning from '/snippets/experimental-feature-warning.mdx'
<LicenseKeyRequired />
<ExperimentalFeatureWarning />
# Overview

View file

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

View file

@ -52,7 +52,7 @@ export const Entry = ({
<div className="overflow-hidden flex-1 min-w-0">
<Tooltip>
<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>
<TooltipContent side="right" className="max-w-sm">
<p className="font-mono text-sm break-all whitespace-pre-wrap">{displayName}</p>

View file

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

View file

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