brianewilkins commented on pull request #1312: URL: https://github.com/apache/couchdb-fauxton/pull/1312#issuecomment-799751371
It did not compile for me. After I made the following changes it would compile for me. ``` $ diff ./app/addons/databases/components.js.orig ./app/addons/databases/components.js 324,325c324 < this.onSetPartitioned = this.onSetPartitioned.bind(this); < this.onSetNotPartitioned = this.onSetNotPartitioned.bind(this); --- > this.onTogglePartitioned = this.onTogglePartitioned.bind(this); 393,395d391 < <label htmlFor="partitioned-db" className='partitioned-db-label'> < Partitioning < </label> 403c399 < <label htmlFor="partitioned-db">Partitioned</label> --- > <label htmlFor="partitioned-db">Partitioned Database?</label> ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
