Github user garrensmith commented on a diff in the pull request: https://github.com/apache/couchdb-fauxton/pull/261#discussion_r24748949 --- Diff: app/addons/documents/views.js --- @@ -145,9 +145,16 @@ function (app, FauxtonAPI, Components, Documents, template: "addons/documents/templates/delete_database_modal", initialize: function (options) { this.database = options.database; + this.isSystemDatabase = options.isSystemDatabase; FauxtonAPI.Events.on('database:delete', this.showDeleteDatabase, this); }, + serialize: function () { + return { + isSystemDatabase: this.isSystemDatabase --- End diff -- This serialize function also needs to return database. You need to make the return this: return { isSystemDatabase: this.isSystemDatabase, database: this.database };
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---