Skip to content

Commit

Permalink
fix(shared): fix handling null desc in jmx domain
Browse files Browse the repository at this point in the history
Fix #1349
  • Loading branch information
tadayosi committed Feb 18, 2025
1 parent b0450ce commit f0ca199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hawtio/src/plugins/shared/tree/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function isMBeanInfo(value: unknown): value is OptimisedMBeanInfo {
return is(
value,
type({
desc: string(),
desc: optional(string()),
class: optional(string()),
attr: optional(record(string(), object())),
op: optional(record(string(), union([object(), array(object())]))),
Expand Down

0 comments on commit f0ca199

Please sign in to comment.