Skip to content

Commit 195e8b8

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

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
@@ -171,7 +171,7 @@ export class NodesView {
171171
this.makeAnalyticsTextLeftArea(groupEnter);
172172
this.makeAnalyticsTextRightArea(groupEnter);
173173
this.makeLabelText(groupEnter);
174-
this.makeLabelConnectionText(groupEnter);
174+
// this.makeLabelConnectionText(groupEnter);
175175
}
176176

177177
makeNodeLODLevel3(groupEnter: any) {
@@ -184,7 +184,7 @@ export class NodesView {
184184
this.makeAnalyticsTextLeftArea(groupEnter);
185185
this.makeAnalyticsTextRightArea(groupEnter);
186186
this.makeLabelText(groupEnter);
187-
this.makeLabelConnectionText(groupEnter);
187+
// this.makeLabelConnectionText(groupEnter);
188188
}
189189

190190
makeNodeLODLevel2(groupEnter: any) {
@@ -195,7 +195,7 @@ export class NodesView {
195195
this.makeNodeDockable(groupEnter);
196196
this.makeAnalyticsArea(groupEnter);
197197
this.makeLabelText(groupEnter);
198-
this.makeLabelConnectionText(groupEnter);
198+
// this.makeLabelConnectionText(groupEnter);
199199
}
200200

201201
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 data-testid="summary-title" 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)