EZQMS-398: fix StringDiffViewer (#4089)

Signed-off-by: Anna No <anna.no@xored.com>
This commit is contained in:
Anna No
2023-11-29 12:15:03 +07:00
committed by GitHub
parent 8442e347a8
commit 32b48d516b
@@ -23,7 +23,7 @@
const handleDiff = (oldValue: string, newValue: string) => Diff[method](oldValue, newValue)
$: changes = handleDiff(value, compareTo)
$: changes = handleDiff(compareTo, value)
</script>
{#each changes as change}