Add 'Dash Dot Dot' border type in link style editor

This commit is contained in:
grossmj 2022-08-25 22:17:52 +02:00
parent 1c8e56274a
commit 0eaa5c714c

View File

@ -21,7 +21,7 @@ export class LinkStyleEditorDialogComponent implements OnInit {
project: Project; project: Project;
link: Link; link: Link;
formGroup: FormGroup; formGroup: FormGroup;
borderTypes = ["Solid", "Dash", "Dot", "Dash Dot"]; borderTypes = ["Solid", "Dash", "Dot", "Dash Dot", "Dash Dot Dot"];
constructor( constructor(
public dialogRef: MatDialogRef<LinkStyleEditorDialogComponent>, public dialogRef: MatDialogRef<LinkStyleEditorDialogComponent>,
@ -71,8 +71,8 @@ export class LinkStyleEditorDialogComponent implements OnInit {
this.linkService.updateLinkStyle(this.controller, this.link).subscribe((link) => { this.linkService.updateLinkStyle(this.controller, this.link).subscribe((link) => {
this.linksDataSource.update(link); this.linksDataSource.update(link);
this.linksEventSource.edited.next(this.linkToMapLink.convert(link)); this.linksEventSource.edited.next(this.linkToMapLink.convert(link));
location.reload() location.reload()
// we add this code/line for reload the entire page because single graph/link style is not updated automatically. // we add this code/line for reload the entire page because single graph/link style is not updated automatically.
// this.toasterService.success("Link updated"); // this.toasterService.success("Link updated");
this.dialogRef.close(); this.dialogRef.close();
}); });