Skip to content

Commit

Permalink
👻 Move task filtering out of wizard update PR
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 committed Jun 20, 2024
1 parent 5b2352d commit ae903b9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions client/src/app/api/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ export interface Task {
createTime?: string;

name: string;
kind: string;
addon: string;
kind?: string;
addon?: string;
extensions: string[];
state?: TaskState;
locator?: string;
Expand Down Expand Up @@ -408,7 +408,8 @@ export interface TaskgroupTask {
export interface Taskgroup {
id?: number;
name: string;
addon: string;
kind?: string;
addon?: string;
data: TaskData;
tasks: TaskgroupTask[];
}
Expand Down Expand Up @@ -469,7 +470,7 @@ export interface Target {
labels?: TargetLabel[];
image?: RulesetImage;
ruleset: Ruleset;
provider?: string;
provider?: string[];
}

export interface Metadata {
Expand Down

0 comments on commit ae903b9

Please sign in to comment.