Adding work item ticket number into to list
This commit is contained in:
@@ -44,3 +44,9 @@ export const workItemTypeEnum = [
|
||||
{ value: "inspection", text: "Inspection" },
|
||||
{ value: "complaint", text: "Complaint" },
|
||||
]
|
||||
|
||||
export const pad = (num, size) => {
|
||||
var s = num + ""
|
||||
while (s.length < size) s = "0" + s
|
||||
return s
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user