You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/components/DiffRoute/Diff.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ function Diff(props: DiffProps): JSX.Element {
92
92
constdelta=diff(previousDisplay,snapshot);// diff function from 'jsondiffpatch' returns the difference in state between 'previousDisplay' and 'snapshot'
93
93
94
94
consthtml=formatters.html.format(delta,previousDisplay);// formatters function from 'jsondiffpatch' returns an html string that shows the difference between delta and the previousDisplay
95
-
console.log(html);
95
+
// console.log(html);
96
96
97
97
if(show)
98
98
formatters.html.showUnchanged();// shows unchanged values if we're on the '/diffRaw' path
0 commit comments