We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb21c5 commit 01071f3Copy full SHA for 01071f3
src/classes/has-shapes.ts
@@ -444,6 +444,12 @@ export default class HasShapes {
444
async getUniqueImportedElements(): Promise<ImportElement[]> {
445
for (const element of this.importElements) {
446
const info = await this.getElementInfo(element);
447
+
448
+ if(element.mode === 'append') {
449
+ element.info = info;
450
+ continue
451
+ }
452
453
const selector = XmlSlideHelper.getSelector(info.sourceElement);
454
const eleHash = JSON.stringify(selector);
455
const alreadyImported = this.importElements.find(
0 commit comments