Skip to content

Commit

Permalink
fix(ui): fix rendering JSON schemas (#1757)
Browse files Browse the repository at this point in the history
Fixes #1741.
  • Loading branch information
williamboman authored Jul 16, 2024
1 parent f96a318 commit e2f7f90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lua/mason/ui/components/json-schema.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ local function JsonSchema(pkg, schema_id, state, schema, key, level, key_width,
return Ui.Node(_.map(function(sub_schema)
return JsonSchema(pkg, schema_id, state, sub_schema)
end, schema))
else
-- Leaf node (aka any type that isn't an object)
elseif level > 0 then -- Leaf nodes cannot occupy the root level.
-- Leaf node (aka any type that isn't an object).
local type = resolve_type(schema)
local heading
local label = (key_prefix .. key .. (" "):rep(key_width or 0)):sub(1, key_width + 5) -- + 5 to account for key_prefix plus some extra whitespace
Expand Down Expand Up @@ -175,6 +175,8 @@ local function JsonSchema(pkg, schema_id, state, schema, key, level, key_width,
})
end),
}
else
return Ui.Node {}
end
end

Expand Down

0 comments on commit e2f7f90

Please sign in to comment.