Feature: Table Booking in guestbook.

Feature: Guest book list shows the running cover count
This commit is contained in:
2023-08-28 07:14:24 +05:30
parent 1cb2677ad1
commit ecea277e46
22 changed files with 481 additions and 64 deletions

View File

@ -6,7 +6,7 @@ import * as moment from 'moment';
})
export class LocalTimePipe implements PipeTransform {
transform(value: string): string {
if (value === undefined) {
if (value === undefined || value === null) {
return '';
}
if (value.length === 5) {