chore: fix error message

This commit is contained in:
mathuo 2024-04-27 13:02:35 +01:00
parent eaabf7968c
commit 459963c13b
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281

View File

@ -1418,7 +1418,7 @@ export class DockviewComponent
if (!referencePanel) { if (!referencePanel) {
throw new Error( throw new Error(
`referencePanel ${options.position.referencePanel} does not exist` `referencePanel '${options.position.referencePanel}' does not exist`
); );
} }
@ -1432,7 +1432,7 @@ export class DockviewComponent
if (!referenceGroup) { if (!referenceGroup) {
throw new Error( throw new Error(
`referencePanel ${options.position.referenceGroup} does not exist` `referenceGroup '${options.position.referenceGroup}' does not exist`
); );
} }
} else { } else {