Skip to content

Commit

Permalink
Update template.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rocket13011 authored Sep 13, 2023
1 parent c7be32b commit 9d9acbc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions desktop/js/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ function addCmdToTable(_cmd) {
var _cmd = { configuration: {} };
}
if (!isset(_cmd.configuration)) {
_cmd.configuration = {};
_cmd.configuration = {}
}
var tr = '<tr class="cmd" data-cmd_id="' + init(_cmd.id) + '">';
tr += '<td class="hidden-xs">';
tr += '<span class="cmdAttr" data-l1key="id"></span>';
tr += "</td>";
tr += "<td>";
tr += '<div class="input-group">';
var tr = '<tr class="cmd" data-cmd_id="' + init(_cmd.id) + '">'
tr += '<td class="hidden-xs">'
tr += '<span class="cmdAttr" data-l1key="id"></span>'
tr += "</td>"
tr += "<td>"
tr += '<div class="input-group">'
tr +=
'<input class="cmdAttr form-control input-sm roundedLeft" data-l1key="name" placeholder="{{Nom de la commande}}">';
tr +=
Expand Down

0 comments on commit 9d9acbc

Please sign in to comment.