Skip to content

Commit

Permalink
make type nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm committed Oct 12, 2023
1 parent 45c5a47 commit fbe00cc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ export interface IExecutionSession {
mode: string | null;
needsRefresh: boolean;
assetSelection: {assetKey: AssetKeyInput; opNames: string[]}[] | null;
assetChecksAvailable: Pick<AssetCheck, 'name' | 'canExecuteIndividually' | 'assetKey'>[];
// Nullable for backwards compatability
assetChecksAvailable?: Pick<AssetCheck, 'name' | 'canExecuteIndividually' | 'assetKey'>[];
includeSeparatelyExecutableChecks: boolean;
solidSelection: string[] | null;
solidSelectionQuery: string | null;
Expand Down

0 comments on commit fbe00cc

Please sign in to comment.