Skip to content

Commit

Permalink
fix(frontend): minor fixes including bottom sheet drag up (#1895)
Browse files Browse the repository at this point in the history
* fix(app): browser search bar contracting issue fix

* fix(splitTasks): only show total featues of uploaded geojson
  • Loading branch information
NSUWAL123 authored Nov 18, 2024
1 parent 743495f commit ba22d09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions src/frontend/src/components/createnewproject/SplitTasks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,7 @@ const SplitTasks = ({ flag, setGeojsonFile, customDataExtractUpload, additionalF
<div>
<p className="fmtm-text-gray-500 fmtm-mt-5">
Total number of features:{' '}
<span className="fmtm-font-bold">
{(dataExtractGeojson?.features?.length || 0) +
(additionalFeatureGeojson?.features?.length || 0)}
</span>
<span className="fmtm-font-bold">{dataExtractGeojson?.features?.length || 0}</span>
</p>
</div>
{splitTasksSelection === task_split_type.DIVIDE_ON_SQUARE && (
Expand Down
1 change: 1 addition & 0 deletions src/mapper/src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@
html,
body {
overscroll-behavior: none;
overflow: hidden;
}
</style>

0 comments on commit ba22d09

Please sign in to comment.