fix: rename Step 1 to Entry in columns view, max depth to 6
This commit is contained in:
@@ -148,12 +148,12 @@ export default function JourneysPage() {
|
||||
<span className="text-brand-orange font-bold">
|
||||
{depth} steps deep
|
||||
</span>
|
||||
<span>5 steps</span>
|
||||
<span>6 steps</span>
|
||||
</div>
|
||||
<input
|
||||
type="range"
|
||||
min={2}
|
||||
max={5}
|
||||
max={6}
|
||||
step={1}
|
||||
value={depth}
|
||||
onChange={(e) => setDepth(parseInt(e.target.value))}
|
||||
|
||||
@@ -163,7 +163,7 @@ function ColumnHeader({
|
||||
return (
|
||||
<div className="flex flex-col items-center gap-0.5 mb-4">
|
||||
<span className="text-xs font-medium text-neutral-400 dark:text-neutral-500 uppercase tracking-wider">
|
||||
Step {column.index + 1}
|
||||
{column.index === 0 ? 'Entry' : `Step ${column.index + 1}`}
|
||||
</span>
|
||||
<div className="flex items-baseline gap-1.5">
|
||||
<span className="text-sm font-semibold text-neutral-900 dark:text-white tabular-nums">
|
||||
|
||||
Reference in New Issue
Block a user