Studio: hide informational message, hide irrelevant quesionts for theme

This commit is contained in:
Pieter Vander Vennet 2024-01-22 01:01:38 +01:00
parent 4f21550301
commit 3d5e117989
3 changed files with 77 additions and 57 deletions

View file

@ -209,6 +209,9 @@ export abstract class EditJsonState<T> {
return []
}
return msgs.filter((msg) => {
if (msg.level === "debug" || msg.level === "information") {
return false
}
const pth = msg.context.path
for (let i = 0; i < Math.min(pth.length, path.length); i++) {
if (pth[i] !== path[i]) {