Display frontend / backend version at the homescreen

This commit is contained in:
2020-10-11 11:13:06 +05:30
parent d677cfb1ea
commit 9ecf0b5cc9
10 changed files with 20 additions and 4 deletions

View File

@ -22,7 +22,8 @@ export class RunningTablesComponent implements OnInit {
navigateToBill(table: Table): void {
const qp = { table: table.id };
if (table.voucherId) {
qp.voucher = table.voucherId;
// eslint-disable-next-line @typescript-eslint/dot-notation
qp['voucher'] = table.voucherId;
}
const navigationExtras: NavigationExtras = {
queryParams: qp,