feat(FN-2845): streamline node routing configuration in dashboard

- Add a reusable ProjectNodeSelector component and hook RoutingTab to it for per-task node overrides
- Move default node and unavailable-node policy controls into the dedicated Node Routing settings section
- Add descriptive routing guidance text and project-level note in SettingsModal
- Expand dashboard tests for routing tab behavior and node routing settings UX
This commit is contained in:
Fusion
2026-04-28 11:01:30 -07:00
committed by gsxdsm
parent 8df19490f0
commit 701feb8ea5
9 changed files with 494 additions and 432 deletions

View File

@@ -0,0 +1,25 @@
.project-node-selector {
display: flex;
flex-direction: column;
gap: var(--space-sm);
}
.project-node-selector__label {
color: var(--text-muted);
font-size: 0.75rem;
}
.project-node-selector .select {
width: 100%;
max-width: 20rem;
}
.project-node-selector__option--dim {
color: var(--text-muted);
}
@media (max-width: 768px) {
.project-node-selector .select {
max-width: 100%;
}
}