Browse Source

this fixes sticky dirty state

pull/2/head
gorhill 10 years ago
parent
commit
f8c38177e2
  1. 2
      src/js/matrix.js

2
src/js/matrix.js

@ -668,7 +668,7 @@ Matrix.prototype.toString = function() {
out.push(switchName + ': ' + srcHostname + ' ' + switchStateToNameMap[val]);
}
}
return out.join('\n');
return out.sort().join('\n');
};
/******************************************************************************/

Loading…
Cancel
Save