diff --git a/src/services/editor.service.ts b/src/services/editor.service.ts index fafa3c4..46bbf6d 100644 --- a/src/services/editor.service.ts +++ b/src/services/editor.service.ts @@ -574,7 +574,7 @@ export class EditorService extends Meta2d { if (isNil(robot)) return; this.#robotMap.set(id, { ...robot, ...value }); if (value.label) { - this.setValue({ id, text: value.label }, { render: true, history: false, doEvent: false }); + this.setValue({ id, text: value.label }, { render: false, history: false, doEvent: false }); } (this.store.data).robots = [...this.#robotMap.values()]; }