Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix empty version strings on Data Management and Test Queue pages #839

Merged
merged 3 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client/components/DataManagement/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export const UPDATE_TEST_PLAN_VERSION_PHASE = gql`
phase
gitSha
gitMessage
versionString
updatedAt
draftPhaseReachedAt
candidatePhaseReachedAt
Expand Down Expand Up @@ -153,6 +154,7 @@ export const UPDATE_TEST_PLAN_VERSION_RECOMMENDED_TARGET_DATE = gql`
phase
gitSha
gitMessage
versionString
updatedAt
draftPhaseReachedAt
candidatePhaseReachedAt
Expand Down
2 changes: 2 additions & 0 deletions client/components/TestQueue/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,13 @@ export const TEST_PLAN_REPORT_QUERY = gql`
testPlanVersion {
id
title
phase
gitSha
gitMessage
testPlan {
directory
}
versionString
updatedAt
}
draftTestPlanRuns {
Expand Down
Loading