Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
| </Link> | ||
| </div> | ||
| {#each sortRecentRuns(recentRuns) as run (run?.startWorkflowResult?.workflowId)} | ||
| {#each sortRecentRuns(recentRuns) as run, i (`${run?.startWorkflowResult?.workflowId ?? i}:${run?.startWorkflowResult?.runId ?? i + 1}`)} |
Contributor
There was a problem hiding this comment.
⚠️ 'run.startWorkflowResult' is possibly 'null' or 'undefined'.⚠️ 'run.startWorkflowResult' is possibly 'null' or 'undefined'.⚠️ Argument of type 'string | null | undefined' is not assignable to parameter of type 'string'.⚠️ Type 'string | null | undefined' is not assignable to type 'string | undefined'.
| {#each visibleItems as workflow (workflow.id + workflow.runId)} | ||
| {#each visibleItems as workflow (`${workflow.id}:${workflow.runId}`)} | ||
| <TableRow | ||
| {workflow} |
Contributor
There was a problem hiding this comment.
⚠️ Type '(workflow: WorkflowExecution) => Promise' is not assignable to type '(workflow?: WorkflowExecution | undefined) => void'.
| @@ -113,7 +113,7 @@ | |||
| {/each} | |||
| </TableRow> | |||
| {#if childrenActive(workflow)} | |||
Contributor
There was a problem hiding this comment.
⚠️ Object is possibly 'undefined'.
Contributor
|
This was referenced Feb 23, 2026
andrewzamojc
approved these changes
Feb 24, 2026
Contributor
andrewzamojc
left a comment
There was a problem hiding this comment.
I did some clicking on the affected pages/components and everything seemed ok 👍
temporal-cicd bot
pushed a commit
that referenced
this pull request
Feb 26, 2026
Auto-generated version bump from 2.47.0 to 2.47.1 Bump type: patch Changes included: - [`44f326b6`](44f326b) Add check for default color (#3194) - [`952ae5ef`](952ae5e) Bump dependencies (#3176) - [`b62ebe7a`](b62ebe7) Detail list text and link value fix (#3195) - [`7f84fe09`](7f84fe0) Bump server image and dockerize versions (#3192)
rossedfort
added a commit
that referenced
this pull request
Feb 26, 2026
Auto-generated version bump from 2.47.0 to 2.47.1 Bump type: patch Changes included: - [`44f326b6`](44f326b) Add check for default color (#3194) - [`952ae5ef`](952ae5e) Bump dependencies (#3176) - [`b62ebe7a`](b62ebe7) Detail list text and link value fix (#3195) - [`7f84fe09`](7f84fe0) Bump server image and dockerize versions (#3192) Co-authored-by: rossedfort <11775628+rossedfort@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description & motivation 💭
5.53.3, the {#each} keyed block now throws a runtimeeach_key_duplicateerror instead of silently handling duplicate keys.@sveltejs/vite-plugin-sveltefrom 5.0.3 to 6.2.4.vitefrom 6.2.4 to 6.3.0 as required for@sveltejs/vite-plugin-svelte6.2.4.Screenshots (if applicable) 📸
Design Considerations 🎨
Testing 🧪
How was this tested 👻
Steps for others to test: 🚶🏽♂️🚶🏽♀️
Checklists
Draft Checklist
Merge Checklist
Issue(s) closed
Docs
Any docs updates needed?