From 12eda959ebda9ec35fcdd14489a82c314631027f Mon Sep 17 00:00:00 2001 From: Michael Uray Date: Thu, 18 Jun 2026 21:17:02 +0000 Subject: [PATCH] chore: apply rush format after develop merge Resolves the failing formatting check requested by @ArtyomSavchenko in review of #10851 after the develop branch merge. Affects three files in our PR scope: - models/tracker/src/migration.ts: collapse short multi-line client.update call - plugins/tracker/src/index.ts: inline DependencyKind union + IssueRelation comment - plugins/tracker-resources/src/components/milestones/EditMilestone.svelte: reformat inline arrow handlers, move QueryIssuesList block ahead of - -
- - - - -
diff --git a/plugins/tracker/src/index.ts b/plugins/tracker/src/index.ts index b762afefc7..ae4ac58806 100644 --- a/plugins/tracker/src/index.ts +++ b/plugins/tracker/src/index.ts @@ -129,11 +129,7 @@ export enum IssuePriority { * * @public */ -export type DependencyKind = - | 'finish-to-start' - | 'start-to-start' - | 'finish-to-finish' - | 'start-to-finish' +export type DependencyKind = 'finish-to-start' | 'start-to-start' | 'finish-to-finish' | 'start-to-finish' /** * @public @@ -352,7 +348,7 @@ export interface IssueParentInfo { * @public */ export interface IssueRelation extends AttachedDoc { - target: Ref // successor + target: Ref // successor kind: DependencyKind /** Lag in schedule days; can be negative (overlap). */ lag: number