forked from MapComplete/MapComplete
Studio: hide informational message, hide irrelevant quesionts for theme
This commit is contained in:
parent
4f21550301
commit
3d5e117989
3 changed files with 77 additions and 57 deletions
|
@ -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]) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue