Commit 48a2d2d3 authored by Jacob Schatz's avatar Jacob Schatz Committed by Eric Eastwood

Use foreach.

parent 0b059a45
...@@ -82,7 +82,7 @@ const RepoEditor = { ...@@ -82,7 +82,7 @@ const RepoEditor = {
const newObj = obj; const newObj = obj;
if (newObj.status) { if (newObj.status) {
newObj.status = false; newObj.status = false;
this.openedFiles.map((file) => { this.openedFiles = this.openedFiles.map((file) => {
const f = file; const f = file;
if (f.active) { if (f.active) {
this.blobRaw = f.plain; this.blobRaw = f.plain;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment