From 155f1fc58c1f6f5fdfbc609c1ed41b94679d60c7 Mon Sep 17 00:00:00 2001 From: Yunwen Zheng Date: Fri, 8 Aug 2025 11:18:02 -0400 Subject: [PATCH] RepositoryOverview: Bugfix recent job not displaying in OSS (#109407) fix condition --- .../provisioning/Repository/RepositoryOverview.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/app/features/provisioning/Repository/RepositoryOverview.tsx b/public/app/features/provisioning/Repository/RepositoryOverview.tsx index 25053decfa0..eaba56e5cc8 100644 --- a/public/app/features/provisioning/Repository/RepositoryOverview.tsx +++ b/public/app/features/provisioning/Repository/RepositoryOverview.tsx @@ -253,12 +253,12 @@ export function RepositoryOverview({ repo }: { repo: Repository }) { {/* job status is not ready for Cloud yet */} - {config.buildInfo.edition === GrafanaEdition.OpenSource || - (config.buildInfo.edition === GrafanaEdition.Enterprise && ( -
- -
- ))} + {(config.buildInfo.edition === GrafanaEdition.OpenSource || + config.buildInfo.edition === GrafanaEdition.Enterprise) && ( +
+ +
+ )} );