Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist-ssr/
.vite/
.DS_Store
*.tsbuildinfo
.config.ts
2 changes: 1 addition & 1 deletion frontend/src/features/soar/components/FlowEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export function FlowEditor({
<header className="flex items-start justify-between gap-4 border-b border-border px-6 py-4">
<div className="min-w-0">
<h2 className="flex items-center gap-2 truncate text-lg font-semibold">
<span className="truncate">{form.name.trim() || (creating ? t('soar.editor.createTitle') : (flow?.name ?? ''))}</span>
<span className="truncate">{form.name.trim() || (creating ? t('soar.new') : (flow?.name ?? t('soar.new')))}</span>
{!readOnly && (
<button
type="button"
Expand Down
Loading
Loading