Fix: use correct relocation icon again
This commit is contained in:
parent
114b72f6f7
commit
cdb1bb23b8
1 changed files with 2 additions and 1 deletions
|
@ -12,6 +12,7 @@ import { Feature, Point } from "geojson"
|
||||||
import SvelteUIElement from "../Base/SvelteUIElement"
|
import SvelteUIElement from "../Base/SvelteUIElement"
|
||||||
import Confirm from "../../assets/svg/Confirm.svelte"
|
import Confirm from "../../assets/svg/Confirm.svelte"
|
||||||
import Relocation from "../../assets/svg/Relocation.svelte"
|
import Relocation from "../../assets/svg/Relocation.svelte"
|
||||||
|
import Location from "../../assets/svg/Location.svelte"
|
||||||
|
|
||||||
export interface MoveReason {
|
export interface MoveReason {
|
||||||
text: Translation | string
|
text: Translation | string
|
||||||
|
@ -62,7 +63,7 @@ export class MoveWizardState {
|
||||||
reasons.push({
|
reasons.push({
|
||||||
text: t.reasons.reasonInaccurate,
|
text: t.reasons.reasonInaccurate,
|
||||||
invitingText: t.inviteToMove.reasonInaccurate,
|
invitingText: t.inviteToMove.reasonInaccurate,
|
||||||
icon: new SvelteUIElement(Confirm),
|
icon: new SvelteUIElement(Location),
|
||||||
changesetCommentValue: "improve_accuracy",
|
changesetCommentValue: "improve_accuracy",
|
||||||
lockBounds: true,
|
lockBounds: true,
|
||||||
includeSearch: false,
|
includeSearch: false,
|
||||||
|
|
Loading…
Reference in a new issue