added trailing slash

This commit is contained in:
Alexander Wong 2017-09-21 22:05:44 -06:00
parent 0486a7fe64
commit 204e83a2a8

View File

@ -35,5 +35,5 @@ export function updateWorktype(uuid, color) {
* @param {string} uuid - worktype unique identifier
*/
export function deleteWorktype(uuid) {
return del(`/worktype/${uuid}`).then(resp => Promise.resolve(resp));
return del(`/worktype/${uuid}/`).then(resp => Promise.resolve(resp));
}