Skip to content

Commit

Permalink
Update code/src/NCModel/Features.ts
Browse files Browse the repository at this point in the history
Fixes wrong class name used in descriptor of NcStatusMonitor.

Co-authored-by: jonathan-r-thorpe <[email protected]>
  • Loading branch information
cristian-recoseanu and jonathan-r-thorpe authored Feb 10, 2025
1 parent e7997f7 commit 6f428d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/src/NCModel/Features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,8 @@ export class NcStatusMonitor extends NcWorker

public static override GetClassDescriptor(includeInherited: boolean): NcClassDescriptor
{
let currentClassDescriptor = new NcClassDescriptor(`${NcReceiverMonitor.name} class descriptor`,
NcReceiverMonitor.staticClassID, NcReceiverMonitor.name, null,
let currentClassDescriptor = new NcClassDescriptor(`${NcStatusMonitor.name} class descriptor`,
NcStatusMonitor.staticClassID, NcStatusMonitor.name, null,
[
new NcPropertyDescriptor(new NcElementId(3, 1), "overallStatus", "NcOverallStatus", true, false, false, null, "Overall status property"),
new NcPropertyDescriptor(new NcElementId(3, 2), "overallStatusMessage", "NcString", true, true, false, null, "Overall status message property"),
Expand Down

0 comments on commit 6f428d6

Please sign in to comment.