diff --git a/src/components/frame/Tag.vue b/src/components/frame/Tag.vue index 9283c2ef..97baa01f 100644 --- a/src/components/frame/Tag.vue +++ b/src/components/frame/Tag.vue @@ -6,7 +6,7 @@ isFace: isFace, }" :to="target" - @click="openTag(data)"> + @click.native="openTag(data)">
{{ data.count }}
{{ data.name }}
diff --git a/src/components/modal/FaceMoveModal.vue b/src/components/modal/FaceMoveModal.vue index 78e99290..73a65731 100644 --- a/src/components/modal/FaceMoveModal.vue +++ b/src/components/modal/FaceMoveModal.vue @@ -78,6 +78,10 @@ export default class FaceMoveModal extends Mixins(GlobalMixin) { const newName = face.name || face.fileid.toString(); + if (!confirm(this.t('memories', 'Are you sure you want to move the selected photos from {name} to {newName}?', { name, newName}))) { + return; + } + try { this.show = false; this.updateLoading(1);