From 9a6f54d39c033e827b8ee14eb44928982b32ea66 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Thu, 11 Dec 2025 10:45:58 +0100 Subject: [PATCH] Docdiff: use the correct path to get the root selector option I found this while debugging #661 since it was removing all the addons from the screen. --- src/docdiff.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docdiff.js b/src/docdiff.js index 79be50d6..504b9fe9 100644 --- a/src/docdiff.js +++ b/src/docdiff.js @@ -101,7 +101,7 @@ export class DocDiffElement extends LitElement { } this.config = config; this.rootSelector = - objectPath.get(this.config, "options.root_selector") || + objectPath.get(this.config, "addons.options.root_selector") || docTool.getRootSelector(); // NOTE: maybe there is a better way to inject this styles?