Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/ssvc-explorer/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,12 @@ Language
<button onclick="SSVC.updateTree()" data-update="1" style="margin-top: 10px;padding: 8px 12px;border: none;background-color: #007bff;color: #fff;border-radius: 4px;cursor: pointer; float:right">Update</button>
<button onclick="SSVC.popupEnd()" style="margin: 10px 10px 0px 0px;;padding: 8px 12px;border: none;background-color: #ff2121;color: #fff;border-radius: 4px;cursor: pointer; float:right">Cancel</button>
</div>
</div>

<div data-yesno="1" style="display:none">
<h4 style="text-align: center">Would you like to proceed?</h4>
<button style="margin-top: 10px;padding: 8px 12px;border: none;background-color: #007bff;color: #fff;border-radius: 4px;cursor: pointer; float:right">Yes</button>
<button style="margin: 10px 10px 0px 0px;;padding: 8px 12px;border: none;background-color: #ff2121;color: #fff;border-radius: 4px;cursor: pointer; float:right">No</button>
</div>
</div>
<form autocomplete="off">
<span style="font-size: 20px;font-weight: bold; vertical-align:top">Sample Decision Models:</span>
<input type="file" name="fileupload" style="display:none" onchange="SSVC.readFile(this)">
Expand Down
1 change: 1 addition & 0 deletions docs/ssvc-explorer/simple.js
Original file line number Diff line number Diff line change
Expand Up @@ -2627,6 +2627,7 @@ function fun_execute(w) {
return {
ssvc_launch: ssvc_launch,
decision_trees: decision_trees,
decision_points, decision_points,
Copy link

Copilot AI Jan 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The syntax for this object property is incorrect. JavaScript object properties should use a colon to separate the key from the value, not a comma. This should be decision_points: decision_points, to properly export the decision_points variable.

Suggested change
decision_points, decision_points,
decision_points: decision_points,

Copilot uses AI. Check for mistakes.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot please make this fix and submit a new PR

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

carved off into #1057 and assigned to copilot

Copy link

Copilot AI Jan 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This property is duplicated in a later property.

Suggested change
decision_points, decision_points,
decision_points,

Copilot uses AI. Check for mistakes.
form: form,
loadSSVC: loadSSVC,
readFile: readFile,
Expand Down
Loading