support: show create ticket result

This commit is contained in:
Girish Ramakrishnan
2019-05-28 10:04:18 -07:00
parent 4277244150
commit 11fe3dc492
3 changed files with 6 additions and 6 deletions

View File

@@ -1239,7 +1239,7 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N
if (error) return callback(error);
if (status !== 201) return callback(new ClientError(status, data));
callback(null);
callback(null, data);
});
};