From 56ce23fc36023dd61c2c46bba8197d8ff8b4cbf9 Mon Sep 17 00:00:00 2001 From: zadam Date: Mon, 27 Apr 2020 22:13:32 +0200 Subject: [PATCH] fix collapsing of note revisions --- src/public/app/widgets/component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/widgets/component.js b/src/public/app/widgets/component.js index c5d037d0d..9ca210248 100644 --- a/src/public/app/widgets/component.js +++ b/src/public/app/widgets/component.js @@ -15,7 +15,7 @@ import Mutex from "../services/mutex.js"; */ export default class Component { constructor() { - this.componentId = `comp-${this.constructor.name}-` + utils.randomString(6); + this.componentId = `comp-` + utils.randomString(8); /** @type Component[] */ this.children = []; this.initialized = Promise.resolve();