code: tsx,nextjs,frontends (2 files)

This commit is contained in:
2025-12-26 00:48:40 +00:00
parent 05cc207a51
commit 8041ac0a9b
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ export function NerdModeIDEHeader({
<CardTitle className="text-lg flex items-center gap-2">
<TerminalIcon fontSize="small" />
Nerd Mode IDE
<span className="text-sm text-muted-foreground">· {workspaceName}</span>
<span className="text-sm text-muted-foreground">- {workspaceName}</span>
</CardTitle>
<div className="flex items-center gap-2">
<Button size="sm" variant="outline" onClick={onOpenGitConfig}>

View File

@@ -40,7 +40,7 @@ export function TemplateDialog({ open, templates, onSelectTemplate, onClose }: T
<p className="text-sm text-muted-foreground mt-1">{template.description}</p>
{template.tags && template.tags.length > 0 && (
<div className="text-xs text-muted-foreground mt-2">
{template.tags.join(' · ')}
{template.tags.join(' - ')}
</div>
)}
</div>