Improve error

This commit is contained in:
Niels Lyngsø
2025-04-21 20:24:58 +02:00
parent 74a9b8aae7
commit 141a4a4678

View File

@@ -111,7 +111,7 @@ export class UmbMergeContentVariantDataController extends UmbControllerBase {
): Promise<UmbPotentialContentValueModel | undefined> {
const editorAlias = draftValue?.editorAlias ?? persistedValue?.editorAlias;
if (!editorAlias) {
console.error(`Editor alias not found for ${editorAlias}`);
console.error(`Editor alias not found for ${editorAlias}`, draftValue, persistedValue);
return draftValue;
}
if (!draftValue) {