We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61dca18 commit 9dd0c4eCopy full SHA for 9dd0c4e
1 file changed
root/static/scripts/edit/utility/diffArtistCredits.js
@@ -10,6 +10,7 @@
10
import * as React from 'react';
11
12
import EntityLink from '../../common/components/EntityLink.js';
13
+import isolateText from '../../common/utility/isolateText.js';
14
import DiffSide from '../components/edit/DiffSide.js';
15
16
import editDiff, {
@@ -161,7 +162,7 @@ export default function diffArtistCredits(
161
162
}
163
164
return {
- new: newNames,
165
- old: oldNames,
+ new: isolateText(newNames),
166
+ old: isolateText(oldNames),
167
};
168
0 commit comments