Skip to content

Commit 9d79160

Browse files
authored
hack: hide node connection time components (#9)
Signed-off-by: Louis Greiner <greiner.louis@gmail.com>
1 parent 6c18770 commit 9d79160

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
@@ -25,7 +25,7 @@
2525
height="28px"
2626
/>
2727
<text x="8" y="55" class="node_text">{{ perlenketteNode.shortName }}</text>
28-
<text x="88" y="55" text-anchor="end" class="node_connection_time">
28+
<text x="88" y="55" text-anchor="end" class="node_connection_time" *ngIf="false">
2929
{{ perlenketteNode.connectionTime }}
3030
</text>
3131

@@ -336,6 +336,7 @@
336336
[attr.y]="55 + heightConnectionSurplus"
337337
text-anchor="end"
338338
class="node_connection_time"
339+
*ngIf="false"
339340
>
340341
{{ perlenketteNode.connectionTime }}
341342
</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
@@ -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
makeNodeLODLevel3(groupEnter: any) {
@@ -196,7 +196,7 @@ export class NodesView {
196196
this.makeAnalyticsTextLeftArea(groupEnter);
197197
this.makeAnalyticsTextRightArea(groupEnter);
198198
this.makeLabelText(groupEnter);
199-
this.makeLabelConnectionText(groupEnter);
199+
// this.makeLabelConnectionText(groupEnter);
200200
}
201201

202202
makeNodeLODLevel2(groupEnter: any) {
@@ -207,7 +207,7 @@ export class NodesView {
207207
this.makeNodeDockable(groupEnter);
208208
this.makeAnalyticsArea(groupEnter);
209209
this.makeLabelText(groupEnter);
210-
this.makeLabelConnectionText(groupEnter);
210+
// this.makeLabelConnectionText(groupEnter);
211211
}
212212

213213
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
@@ -29,6 +29,7 @@ <h2 class="SummaryTitle">
2929
<sbb-form-field [label]="'app.view.editor-side-view.editor-node-detail-view.connection-time' | translate"
3030
class="sbb-form-field-long"
3131
[class.readonly]="!versionControlService.getVariantIsWritable()"
32+
*ngIf="false"
3233
>
3334
<input
3435
sbbInput

0 commit comments

Comments
 (0)