Skip to content

Commit 7b54499

Browse files
committed
hack: hide node connection time components (#9)
Signed-off-by: Louis Greiner <[email protected]>
1 parent 136b7cb commit 7b54499

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/app/perlenkette/perlenkette-node/perlenkette-node.component.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
height="28px"
2222
/>
2323
<text x="8" y="55" class="node_text">{{ perlenketteNode.shortName }}</text>
24-
<text x="88" y="55" text-anchor="end" class="node_connection_time">
24+
<text x="88" y="55" text-anchor="end" class="node_connection_time" *ngIf="false">
2525
{{ perlenketteNode.connectionTime }}
2626
</text>
2727

@@ -267,6 +267,7 @@
267267
[attr.y]="55 + heightConnectionSurplus"
268268
text-anchor="end"
269269
class="node_connection_time"
270+
*ngIf="false"
270271
>
271272
{{ perlenketteNode.connectionTime }}
272273
</text>

src/app/view/editor-main-view/data-views/nodes.view.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class NodesView {
170170
this.makeAnalyticsTextLeftArea(groupEnter);
171171
this.makeAnalyticsTextRightArea(groupEnter);
172172
this.makeLabelText(groupEnter);
173-
this.makeLabelConnectionText(groupEnter);
173+
// this.makeLabelConnectionText(groupEnter);
174174
}
175175

176176
makeNodeLODLevel3(groupEnter: any) {
@@ -183,7 +183,7 @@ export class NodesView {
183183
this.makeAnalyticsTextLeftArea(groupEnter);
184184
this.makeAnalyticsTextRightArea(groupEnter);
185185
this.makeLabelText(groupEnter);
186-
this.makeLabelConnectionText(groupEnter);
186+
// this.makeLabelConnectionText(groupEnter);
187187
}
188188

189189
makeNodeLODLevel2(groupEnter: any) {
@@ -194,7 +194,7 @@ export class NodesView {
194194
this.makeNodeDockable(groupEnter);
195195
this.makeAnalyticsArea(groupEnter);
196196
this.makeLabelText(groupEnter);
197-
this.makeLabelConnectionText(groupEnter);
197+
// this.makeLabelConnectionText(groupEnter);
198198
}
199199

200200
makeNodeLODLevel1(groupEnter: any) {

src/app/view/editor-side-view/editor-node-detail-view/editor-node-detail-view.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ <h2 class="SummaryTitle">
3232
[label]="'app.view.editor-side-view.editor-node-detail-view.connection-time' | translate"
3333
class="sbb-form-field-long"
3434
[class.readonly]="!versionControlService.getVariantIsWritable()"
35+
*ngIf="false"
3536
>
3637
<input
3738
sbbInput

0 commit comments

Comments
 (0)