Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/158'
Browse files Browse the repository at this point in the history
Close #158
Fix #96
  • Loading branch information
michalbundyra committed Nov 27, 2019
2 parents 285719c + 6d0275c commit 3632c9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ All notable changes to this project will be documented in this file, in reverse

- [#157](https://github.com/zfcampus/zf-apigility-admin-ui/pull/157) fixes errors on sidebar search.

- [#158](https://github.com/zfcampus/zf-apigility-admin-ui/pull/158) fixes removal of database adapter containing special chars in the name.

## 1.3.12 - 2019-11-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/apigility-ui/service/api.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@
};

this.deleteDatabase = function(name, callback) {
xhr.remove(agApiPath + '/db-adapter/' + name)
xhr.remove(agApiPath + '/db-adapter/' + encodeURIComponent(name))
.then(function (response) {
growl.success('Database adapter removed');
return callback(false, response);
Expand Down

0 comments on commit 3632c9a

Please sign in to comment.