Skip to content

Commit

Permalink
fix: UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
varun2948 committed Jan 26, 2024
1 parent 733c5bb commit 9ba3628
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
18 changes: 8 additions & 10 deletions frontend/src/components/projectDetail/downloadOsmData.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,14 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {
...feature,
...results[index],
}));
const mergedListData = downloadDataList.map((type) => {
if (type.title === selectedCategoryFormat.title) {
const mergedListData = downloadDataList.map((list) => {
if (list.title === selectedCategoryFormat.title) {
return {
...type,
...list,
featuretype: mergedArray,
};
}
return type;
return list;
});
setDownloadDataList(mergedListData);
setIsDownloadingState({
Expand All @@ -189,8 +189,6 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {
});
};
multipleHeadCallForFormat();

console.log('test');
}, [selectedCategoryFormat]);

return (
Expand Down Expand Up @@ -225,7 +223,7 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {
const loadingState = isDownloadingState?.isDownloading;
return (
<div
className="osm-card bg-white pa3 mr4 mt4 w-auto-m flex flex-wrap items-center "
className="osm-card bg-white pa3 mr4 mt4 w-auto-m flex flex-wrap items-start justify-start "
style={{
width: '800px',
gap: '16px',
Expand All @@ -248,7 +246,7 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {
</div>
<div className="flex-column">
<div
className="file-list flex barlow-condensed f3"
className="file-list flex barlow-condensed f3 items-center "
style={{ display: 'flex', gap: '12px' }}
>
<p className="fw5 ttc">{type.title}</p>
Expand All @@ -273,7 +271,7 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {
selectedCategoryFormat.title === type.title &&
type?.featuretype?.map((typ) => (
<span
key={`${typ}_${selectedCategoryFormat.title}`}
key={`${typ.type}_${selectedCategoryFormat.title}`}
onClick={() =>
downloadS3File(
selectedCategoryFormat.title,
Expand Down Expand Up @@ -307,7 +305,7 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {
</p>
<span className="f7 mid-gray">{`Last Generated: ${
typ.lastmod ? typ.lastmod : '-'
})`}</span>
}`}</span>
</div>
</span>
))}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/projectDetail/fileFormatCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function FileFormatCard({
{loadingState ? <AnimatedLoadingIcon /> : null}
</p>
</span>
{index !== fileFormats.length - 1 && <hr className="file-list-separator" />}
{index !== fileFormats.length - 1 && <span className="file-list-separator" />}
</React.Fragment>
);
})}
Expand Down
1 change: 0 additions & 1 deletion frontend/src/components/projectDetail/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
}

.file-list-separator {
top: 13px;
height: 27px;
position: relative;
border: 1px solid #d73f3f;
Expand Down

0 comments on commit 9ba3628

Please sign in to comment.