Skip to content

Commit

Permalink
Merge pull request #75186 from cockroachdb/blathers/backport-release-…
Browse files Browse the repository at this point in the history
…21.2-75167

release-21.2: ui: make these UIConfigState properties optional
  • Loading branch information
matthewtodd authored Jan 20, 2022
2 parents 34655af + f08e9b3 commit 3119ca5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ export type UIConfigState = {
statementDetails: {
showStatementDiagnosticsLink: boolean;
};
sessions: {
showTerminateActions: boolean;
sessions?: {
showTerminateActions?: boolean;
};
sessionDetails: {
showGatewayNodeLink: boolean;
showTerminateActions: boolean;
showTerminateActions?: boolean;
};
};
};
Expand Down

0 comments on commit 3119ca5

Please sign in to comment.