Duration variable format is changed to "days hh:mm:ss" after Rome upgrade.Description'Duration' type variable format is changed to "days hh:mm:ss" after Rome upgrade.Steps to Reproduce 1. Login to any OOB Rome instance.2. Create a sample catalog item with the below variable. a) Variable Type: Durationb) Variable attributes: max_unit=hoursc) Enter other mandatory fields and save it. 3. Now create an 'Onchange client script' of type 'All' on the above variable and add the below alert. function onChange(control, oldValue, newValue, isLoading) { if (isLoading || newValue == '') { return; }alert(newValue); } 4. Open the catalog item in the Service portal and try to enter the hours (Example: 4 ) and observe the alert. Expected behavior: It should show as '1970-01-01 04:00:00' format. (Till Quebec version)Actual behavior: It is showing as '0 4:0:0' format.WorkaroundThis is expected behavior in the Rome instance. The way of representing has been changed to "days hh:mm:ss"Related Problem: PRB1541872