Merging actor avatars. Fixed faulty actor ID search in merge dialog.
This commit is contained in:
@@ -97,7 +97,7 @@ const submitted = ref(false);
|
||||
|
||||
async function searchActors() {
|
||||
const res = await get('/actors', {
|
||||
q: `${actorQuery.value}*`, // return partial matches
|
||||
q: actorQuery.value.charAt(0) === '#' ? actorQuery.value : `${actorQuery.value}*`, // return partial matches
|
||||
limit: 10,
|
||||
global: true,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user