How to change time format from am/pm to 24 hour for the Walkup queue SummaryThe Walkup queue by default displays the time in am/pm. InstructionsIn order to get the desired format to be displayed, you will need to modify the widget "Walk-up Queue On Site" by making a change in the body HTML template section. Steps to follow:1. In the filter navigator go to service portal and look for widgets.2. In the sp_widget list page, search for Walk-up Queue On Site"3. If you are not already in the walk-up experience application scope click at the top of the page where it says "here" to edit.4. In the Body HTML template section look for this line of code." <span>{{displayTime | date: 'h:mma' | lowercase}}</span>"edit the line to the following."<span>{{displayTime | date: 'HH:mm' | lowercase}}</span>"