Hi,
I would like to report a formatting issue in the Service List file, located at:
Issue:
Within the _buildOptionEntryAddTimeDisplay
function, the time display template is defined as:
However, the time is actually formatted using:
This means both the start and end times should be displayed as two-digit values (HH:MM). The extra digit in the end time template ("00:000") is therefore incorrect.
Impact:
- The incorrect template may result in inaccurate width calculations.
- It might also lead to inconsistent UI appearance.
Suggested fix:
Change the template to:
This change will ensure that the display width is correctly calculated based on the actual time format.
Best regards.