couple of minor formatting issues

This commit is contained in:
Jason Wall 2024-03-09 13:06:00 -05:00
parent f35b5d4902
commit 838bfe1491
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
>
<a mat-list-item (click)="showHelp()"
><mat-icon color="accenovert">help</mat-icon>Help</a
><mat-icon color="accenovert">help</mat-icon> Help</a
>
</mat-nav-list>

View File

@ -60,7 +60,7 @@ export class PassageCardComponent extends CardComponent implements OnInit {
}
copy() {
const text = this.passageElement.nativeElement.innerText + ` - ${this.ref.toString()}`;
const text = this.passageElement.nativeElement.innerText + ` \n - ${this.ref.toString()}`;
this.copyToClip(text);
}