Skip to content

Commit

Permalink
BDE-150: Fix dependency mismatch error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ktouchie committed Jun 12, 2018
1 parent 15a12b9 commit dfca633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts.babel/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ limitations under the License.
let nuxeoctlCommand = 'nuxeoctl mp-install';
deps.forEach((dep) => {
const li = document.createElement('li');
li.textContent(`${dep}`);
li.textContent = dep;
$('#deps-list').append(li);
nuxeoctlCommand += ` ${dep}`;
});
Expand Down

0 comments on commit dfca633

Please sign in to comment.