Skip to content

Commit

Permalink
Fix copy object popup text
Browse files Browse the repository at this point in the history
  • Loading branch information
rogup committed Apr 29, 2024
1 parent 4463099 commit 4af9566
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/map/DrawingPopup/DrawingPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,14 @@ const DrawingPopup = ({ object, type, source, closeDescription }) => {
type={type}
/>
)}
{mode === MODE.SAVING && <PopupStatus mode={MODE.SAVING} />}
{mode === MODE.SAVING && (
<PopupStatus
mode={MODE.SAVING}
selectedMap={selectedMap}
selectedDataGroup={selectedDataGroup}
type={type}
/>
)}
{mode === MODE.SUCCESS && (
<PopupStatus
mode={MODE.SUCCESS}
Expand Down

0 comments on commit 4af9566

Please sign in to comment.