Revert "Fix: flip direction of diff to show wrong as red and correct as green"
This reverts commit 5273160a0f
.
This commit is contained in:
parent
5273160a0f
commit
55078b5e18
|
@ -202,18 +202,18 @@ const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse
|
|||
<div>
|
||||
ChapterTitle:
|
||||
<DiffViewer
|
||||
oldValue={inputChapterTitle}
|
||||
newValue={chapterTitle}
|
||||
oldValue={chapterTitle}
|
||||
newValue={inputChapterTitle}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
<p></p>
|
||||
<div>
|
||||
Title: <DiffViewer oldValue={inputTitle} newValue={title} />
|
||||
Title: <DiffViewer oldValue={title} newValue={inputTitle} />
|
||||
</div>
|
||||
<p></p>
|
||||
<div>
|
||||
Verse: <DiffViewer oldValue={inputVerse} newValue={verse} />
|
||||
Verse: <DiffViewer oldValue={verse} newValue={inputVerse} />
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
|
Loading…
Reference in New Issue