diff --git a/azure-pipelines-eu.yml b/azure-pipelines-eu.yml
index 3b6c4c0b6..3cb6c31af 100644
--- a/azure-pipelines-eu.yml
+++ b/azure-pipelines-eu.yml
@@ -1,4 +1,3 @@
-# Works
trigger:
- none
@@ -96,7 +95,6 @@ stages:
inputs:
targetType: 'inline'
script: |
- # Modify deployment script based on the app type
echo "Starting deployment script run"
- task: ExtractFiles@1
diff --git a/frontend/src/components/projects/ProjectDetail/index.js b/frontend/src/components/projects/ProjectDetail/index.js
index 23fb3f435..116c5ffd8 100644
--- a/frontend/src/components/projects/ProjectDetail/index.js
+++ b/frontend/src/components/projects/ProjectDetail/index.js
@@ -517,15 +517,21 @@ const ProjectDetail = ({
Source code
{project.sourcePublic ? (
-
- {project.source
- ? project.source
- : 'Not available'}
-
+ <>
+ {project.source ? (
+
+ {project.source}
+
+ ) : (
+
+ Not public
+
+ )}
+ >
) : (
Not public