Task sharing wording improved

This commit is contained in:
2026-03-19 18:03:32 -05:00
parent 7f781edd89
commit 9438cffd58
+3 -3
View File
@@ -119,7 +119,7 @@ export const SettingsView: Component<{ setView?: (v: string) => void }> = (props
<Share2 size={16} /> <Share2 size={16} />
Tag Sharing Tag Sharing
</h3> </h3>
<p class="text-sm text-muted-foreground">Share through tags only: `@people` collaborate, `@buckets` route work, and `#notes` stay link-only.</p> <p class="text-sm text-muted-foreground">Share through tags: `@people` to collaborate, `@buckets` to move tasks to buckets, and `#notes` to link tasks to notes.</p>
</div> </div>
<div class="w-8 h-8 rounded-full flex items-center justify-center bg-muted/50 group-hover:bg-muted transition-colors"> <div class="w-8 h-8 rounded-full flex items-center justify-center bg-muted/50 group-hover:bg-muted transition-colors">
{isSharingOpen() ? <ChevronDown size={16} /> : <ChevronRight size={16} />} {isSharingOpen() ? <ChevronDown size={16} /> : <ChevronRight size={16} />}
@@ -131,7 +131,7 @@ export const SettingsView: Component<{ setView?: (v: string) => void }> = (props
<div class="p-3 rounded-xl bg-muted/30 border border-border/50 space-y-3"> <div class="p-3 rounded-xl bg-muted/30 border border-border/50 space-y-3">
<h4 class="text-[0.625rem] font-black uppercase tracking-widest text-muted-foreground">User Tag Policies</h4> <h4 class="text-[0.625rem] font-black uppercase tracking-widest text-muted-foreground">User Tag Policies</h4>
<p class="text-[0.6875rem] text-muted-foreground"> <p class="text-[0.6875rem] text-muted-foreground">
Control how each <span class="font-semibold text-foreground">@user</span> tag behaves. Collaborative tags keep work shared. Handoff tags route work into that user&apos;s queue. Control how each <span class="font-semibold text-foreground">@user</span> share tag behaves. Collaborative keeps tasks in both of your lists. Handoff moves tasks from your list to theirs.
</p> </p>
<div class="space-y-2"> <div class="space-y-2">
<For each={userContexts()} fallback={ <For each={userContexts()} fallback={
@@ -506,7 +506,7 @@ export const SettingsView: Component<{ setView?: (v: string) => void }> = (props
<Box size={16} /> <Box size={16} />
Shared Buckets Shared Buckets
</h3> </h3>
<p class="text-sm text-muted-foreground">Each bucket is a real `@context` with a policy, metadata, soft delete, and personal pinning.</p> <p class="text-sm text-muted-foreground">Buckets are shared spaces where tasks can be moved and collaborated on.</p>
</div> </div>
<div class="w-8 h-8 rounded-full flex items-center justify-center bg-muted/50 group-hover:bg-muted transition-colors"> <div class="w-8 h-8 rounded-full flex items-center justify-center bg-muted/50 group-hover:bg-muted transition-colors">
{isBucketsOpen() ? <ChevronDown size={16} /> : <ChevronRight size={16} />} {isBucketsOpen() ? <ChevronDown size={16} /> : <ChevronRight size={16} />}