Skip to content
Snippets Groups Projects
Commit d070acf1 authored by Hartung, Michael's avatar Hartung, Michael
Browse files

remove lines from legend

parent 196291ff
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ div.legend {
}
tr.list-item {
line-height: calc(#{$legend-row-height} / 2);
border-top: var(--drgstn-text-primary) 1px solid;
// border-top: var(--drgstn-text-primary) 1px solid;
th {
height: $legend-row-height;
width: $legend-row-height;
......
......@@ -305,7 +305,7 @@ export class NetworkComponent implements OnInit {
public stabilize(): Promise<any> {
return new Promise<boolean>((resolve, reject) => {
this.networkInternal.on('stabilizationIterationsDone', () => {
this.networkInternal.once('stabilizationIterationsDone', () => {
this.updatePhysicsEnabled(this.drugstoneConfig.config.physicsOn);
this.networkInternal.fit();
this.loadingScreen.stateUpdate(false);
......
......@@ -364,7 +364,7 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit {
this.networkHandler.activeNetwork.networkInternal = new vis.Network(container, this.nodeData, options);
this.networkHandler.activeNetwork.networkInternal.on('stabilizationIterationsDone', () => {
this.networkHandler.activeNetwork.networkInternal.once('stabilizationIterationsDone', () => {
if (!this.drugstoneConfig.config.physicsOn) {
this.networkHandler.activeNetwork.updatePhysicsEnabled(false);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment