Skip to content

Commit

Permalink
Merge pull request #764 from ICRAR/eagle-1342
Browse files Browse the repository at this point in the history
only showing the encoding tab in the parameter table when looking at …
  • Loading branch information
M-Wicenec authored Nov 7, 2024
2 parents 7b81a7a + 1880fae commit 73c9f3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/parameter_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h5 class="bottomWindowHeader">Fields Table: </h5>
<!-- ko if: ParameterTable.getActiveColumnVisibility().usage() -->
<th id="parameter_table_usage" data-bind="eagleTooltip:'InputPorts and OutputPorts are used to specify named inputs and outputs from this Component.'" data-bs-placement="top">Use As</th>
<!-- /ko -->
<!-- ko if: ParameterTable.getActiveColumnVisibility().encoding() -->
<!-- ko if: ParameterTable.getActiveColumnVisibility().encoding() && eagle.selectedNode().isApplication()-->
<th id="parameter_table_encoding" data-bind="eagleTooltip:'The way data is encoded when passing through this port.'" data-bs-placement="top">Encoding</th>
<!-- /ko -->
<!-- ko if: ParameterTable.getActiveColumnVisibility().actions() -->
Expand Down Expand Up @@ -432,7 +432,7 @@ <h5 class="bottomWindowHeader">Fields Table: </h5>
</td>
<!-- /ko -->

<!-- ko if: ParameterTable.getActiveColumnVisibility().encoding() -->
<!-- ko if: ParameterTable.getActiveColumnVisibility().encoding() && eagle.selectedNode().isApplication() -->
<td class='columnCell column_Encoding'>
<!-- ko if: $data.usage() === Daliuge.FieldUsage.NoPort-->
<span class="faded">N/A</span>
Expand Down

0 comments on commit 73c9f3e

Please sign in to comment.