Skip to content

Commit

Permalink
bugfix: avoid adding an extra "#" column in reused moduleUoa workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ens-lg4 committed Nov 27, 2018
1 parent 0bc4524 commit edea208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wfe/dashboard/ck-repo-widget/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -2594,7 +2594,7 @@ var CkRepoWdiget = function () {
for (var _iterator11 = _this9.workflows[Symbol.iterator](), _step11; !(_iteratorNormalCompletion11 = (_step11 = _iterator11.next()).done); _iteratorNormalCompletion11 = true) {
var eWorkflow = _step11.value;

if (eWorkflow.moduleUoa === workflow.moduleUoa) {
if (eWorkflow.moduleUoa === workflow.moduleUoa && JSON.stringify(eWorkflow.call_attribs || {}) === JSON.stringify(workflow.call_attribs || {}) ) {
eWorkflow.config = toLocal(config, eWorkflow.configPrefix);

CkRepoWidgetUtils.prepareTableView(eWorkflow.config.table_view);
Expand Down

0 comments on commit edea208

Please sign in to comment.