From b00425e9c065220f357cdfa14957cb3a8fbc811c Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Sun, 5 Jul 2026 05:18:38 +0200 Subject: [PATCH] Moved actor merge from bio to edit. --- components/actors/bio.vue | 20 ++---------------- pages/actors/edit/+Page.vue | 42 ++++++++++++++++++++++++++++++++----- pages/scene/edit/+Page.vue | 1 + 3 files changed, 40 insertions(+), 23 deletions(-) diff --git a/components/actors/bio.vue b/components/actors/bio.vue index 15ed361..03b87da 100644 --- a/components/actors/bio.vue +++ b/components/actors/bio.vue @@ -374,29 +374,17 @@ :href="`/actor/edit/${actor.id}/${actor.slug}`" target="_blank" class="link" - >Edit bio + >Edit Revisions - - Merge - -
countB - countA) .map(([alias]) => alias) .filter((alias) => alias !== props.actor.name); - -const showMergeDialog = ref(false); diff --git a/pages/scene/edit/+Page.vue b/pages/scene/edit/+Page.vue index e8eac73..199c415 100644 --- a/pages/scene/edit/+Page.vue +++ b/pages/scene/edit/+Page.vue @@ -275,6 +275,7 @@ const fields = computed(() => [ }, { key: 'url', + label: 'URL', type: 'string', value: scene.value.url, enabled: verifyAbility(user, 'scene', 'update'),