Skip to content

Commit

Permalink
Fix project info page color
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Nov 20, 2024
1 parent c8c5aa3 commit ade9c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export const ProjectDetailPage = () => {
}
return (
<ProjectDetail
className={`db-${project.database === '' ? 'OSM' : 'PDMAP'}`}
className={`db-${project.data.database === '' ? 'OSM' : 'PDMAP'}`}
project={project.data}
projectLoading={false}
tasksError={false}
Expand Down

0 comments on commit ade9c6c

Please sign in to comment.