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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}