Skip to content
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: 0 additions & 2 deletions azure-pipelines-eu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Works
trigger:
- none

Expand Down Expand Up @@ -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
Expand Down
24 changes: 15 additions & 9 deletions frontend/src/components/projects/ProjectDetail/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -517,15 +517,21 @@ const ProjectDetail = ({
Source code
</Typography>
{project.sourcePublic ? (
<a
href={project.source}
target="_blank"
rel="noopener noreferrer"
>
{project.source
? project.source
: 'Not available'}
</a>
<>
{project.source ? (
<a
href={project.source}
target="_blank"
rel="noopener noreferrer"
>
{project.source}
</a>
) : (
<Typography variant="subtitle1">
Not public
</Typography>
)}
</>
) : (
<Typography variant="subtitle1">
Not public
Expand Down