-
Notifications
You must be signed in to change notification settings - Fork 14
feat: demo improve modal copy #327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: demo improve modal copy #327
Conversation
|
|
| Command | Status | Duration | Result |
|---|---|---|---|
nx affected -t lint typecheck test --parallel -... |
❌ Failed | 16s | View ↗ |
☁️ Nx Cloud last updated this comment at 2025-11-11 14:44:43 UTC
| import type { createFlowState } from '$lib/stores/pgflow-state-improved.svelte'; | ||
| import StatusBadge from '$lib/components/StatusBadge.svelte'; | ||
| import PulseDot from '$lib/components/PulseDot.svelte'; | ||
| import MiniDAG from '$lib/components/MiniDAG.svelte'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There appear to be unused imports in this file. Remove any imports that are not being used in the component such as 'Card', 'CardContent', 'CardHeader', 'CardTitle', 'hoveredStep' if they exist in the import list.
Spotted by Graphite Agent (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
| {#each edgePaths as edge} | ||
| {#if edge} | ||
| <path class="edge" d={edge.d} /> | ||
| {/if} | ||
| {/each} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This each block is missing a key attribute. Add a key using the edge id or index: {#each edgePaths as edge, i (edge?.id || i)}
Spotted by Graphite Agent (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
| {#each nodes as node} | ||
| <g class={getNodeClass(node.id)}> | ||
| <rect | ||
| x={node.x - nodeWidth / 2} | ||
| y={node.y - nodeHeight / 2} | ||
| width={nodeWidth} | ||
| height={nodeHeight} | ||
| rx="2" | ||
| ry="2" | ||
| /> | ||
| <text x={node.x} y={node.y}>{node.label}</text> | ||
| </g> | ||
| {/each} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This each block is missing a key attribute. Add a key using the node id: {#each nodes as node (node.id)}
Spotted by Graphite Agent (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
e917be1 to
247a4f4
Compare
33c05f6 to
285cf2a
Compare
285cf2a to
fb04517
Compare
247a4f4 to
e7e6e77
Compare
fb04517 to
e03fcc0
Compare
e7e6e77 to
79752ff
Compare
79752ff to
9130808
Compare
e03fcc0 to
be528e2
Compare
be528e2 to
b90bf4f
Compare
Merge activity
|

No description provided.