Skip to content

Commit 29af91c

Browse files
authored
Allow revision-data: scm: null
1 parent 6552cd3 commit 29af91c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/scm-table.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ module.exports = CoreObject.extend({
6464

6565
var row = [
6666
((revision.active) ? '> ' : ' ') + data.revisionKey,
67-
data.scm.sha.substr(0,8),
68-
data.scm.email,
69-
data.scm.branch,
67+
data.scm && data.scm.sha.substr(0,8),
68+
data.scm && data.scm.email,
69+
data.scm && data.scm.branch,
7070
];
7171

7272
if (this._isWide()) {

0 commit comments

Comments
 (0)