1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

removes extra slash

This commit is contained in:
Jared Tabor 2018-05-10 13:04:26 -07:00
parent 0c45d917d1
commit 576a4a1b58
No known key found for this signature in database
GPG Key ID: 1B343EC4C3CF7E5C

View File

@ -19,7 +19,7 @@ function editScheduleResolve () {
],
timezonesResolve: ['Rest', '$stateParams', 'GetBasePath', 'ProcessErrors',
(Rest, $stateParams, GetBasePath, ProcessErrors) => {
var path = `${GetBasePath('schedules')}/zoneinfo`;
var path = `${GetBasePath('schedules')}zoneinfo`;
Rest.setUrl(path);
return Rest.get()
.then(function(data) {