1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-17 17:55:00 +12:00

this fixes sticky dirty state

This commit is contained in:
gorhill 2015-05-06 19:13:38 -04:00
parent 0211bcec64
commit f8c38177e2

View file

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