Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/Field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ export class Field {
return "";
}

getHelpHtml= () : string => {
getHelpHtml = () : string => {
return "###"+ this.getDisplayText() + "\n" + this.getDescription();
}

Expand Down
42 changes: 22 additions & 20 deletions templates/node_parameter_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -408,28 +408,30 @@ <h5 class="bottomWindowHeader">Node Fields Table: <span>(No selection)</span></h
<i class="material-symbols-outlined iconHoverEffect">lock_open</i>
</button>
<!-- /ko -->
<!-- ko if: Setting.findValue(Setting.ALLOW_COMPONENT_EDITING)-->
<!-- ko if: $data.isPrecious() -->
<button type="button" data-bind="click: $data.togglePrecious, eagleTooltip: 'Parameter is precious<br/>Click to toggle'" data-bs-placement="left">
<i class="material-symbols-outlined iconHoverEffect">diamond</i>
</button>
<!-- /ko -->
<!-- ko ifnot: $data.isPrecious() -->
<button type="button" data-bind="click: $data.togglePrecious, eagleTooltip: 'Parameter is not precious<br/>Click to toggle'" data-bs-placement="left">
<i class="material-symbols-outlined iconHoverEffect">diamond</i>
</button>
<!-- ko if: $data.parameterType() === Daliuge.FieldType.Application -->
<!-- ko if: Setting.findValue(Setting.ALLOW_COMPONENT_EDITING)-->
<!-- ko if: $data.isPrecious() -->
<button type="button" data-bind="click: $data.togglePrecious, eagleTooltip: 'Parameter is precious<br/>Click to toggle'" data-bs-placement="left">
<i class="material-symbols-outlined filled iconHoverEffect">diamond</i>
</button>
<!-- /ko -->
<!-- ko ifnot: $data.isPrecious() -->
<button type="button" data-bind="click: $data.togglePrecious, eagleTooltip: 'Parameter is not precious<br/>Click to toggle'" data-bs-placement="left">
<i class="material-symbols-outlined iconHoverEffect">diamond</i>
</button>
<!-- /ko -->
<!-- /ko -->
<!-- /ko -->
<!-- ko if: Setting.findValue(Setting.ALLOW_COMPONENT_EDITING)-->
<!-- ko if: Setting.findValue(Setting.ALLOW_COMPONENT_EDITING)-->
<!-- ko if: $data.isPositionalArgument() -->
<button type="button" data-bind="click: $data.togglePositionalArgument, eagleTooltip: 'Parameter is positional<br/>Click to toggle'" data-bs-placement="left">
<i class="material-symbols-outlined iconHoverEffect">location_on</i>
</button>
<!-- /ko -->
<!-- ko ifnot: $data.isPositionalArgument() -->
<button type="button" data-bind="click: $data.togglePositionalArgument, eagleTooltip: 'Parameter is not positional<br/>Click to toggle'" data-bs-placement="left">
<i class="material-symbols-outlined iconHoverEffect">location_on</i>
</button>
<button type="button" data-bind="click: $data.togglePositionalArgument, eagleTooltip: 'Parameter is positional<br/>Click to toggle'" data-bs-placement="left">
<i class="material-symbols-outlined filled iconHoverEffect">location_on</i>
</button>
<!-- /ko -->
<!-- ko ifnot: $data.isPositionalArgument() -->
<button type="button" data-bind="click: $data.togglePositionalArgument, eagleTooltip: 'Parameter is not positional<br/>Click to toggle'" data-bs-placement="left">
<i class="material-symbols-outlined iconHoverEffect">location_on</i>
</button>
<!-- /ko -->
<!-- /ko -->
<!-- /ko -->
<!-- ko ifnot: $data.usage() === Daliuge.FieldUsage.NoPort-->
Expand Down