Skip to content

Commit

Permalink
CT in DevTools: use "Source" rather than "Origin".
Browse files Browse the repository at this point in the history
BUG=591848

Review-Url: https://codereview.chromium.org/2106863005
Cr-Commit-Position: refs/heads/master@{#403127}
  • Loading branch information
lgarron authored and Commit bot committed Jun 30, 2016
1 parent 6e4adf6 commit 08001ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front_end/security/SecurityPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ WebInspector.SecurityOriginView = function(panel, origin, originState)
sctTable.addRow(WebInspector.UIString("Log Name"), sct.logDescription);
sctTable.addRow(WebInspector.UIString("Log ID"), sct.logId.replace(/(.{2})/g,"$1 "));
sctTable.addRow(WebInspector.UIString("Validation Status"), sct.status);
sctTable.addRow(WebInspector.UIString("Origin"), sct.origin);
sctTable.addRow(WebInspector.UIString("Source"), sct.origin);
sctTable.addRow(WebInspector.UIString("Issued At"), new Date(sct.timestamp).toUTCString());
sctTable.addRow(WebInspector.UIString("Hash Algorithm"), sct.hashAlgorithm);
sctTable.addRow(WebInspector.UIString("Signature Algorithm"), sct.signatureAlgorithm);
Expand Down

0 comments on commit 08001ae

Please sign in to comment.