Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 91ba939

Browse files
committed
tiny bit of de-lint for consistency
Signed-off-by: Michael Telatynski <[email protected]>
1 parent 6a4e379 commit 91ba939

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TextForEvent.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ function textForPowerEvent(event) {
243243
if (to !== from) {
244244
diff.push(
245245
_t('%(userId)s from %(fromPowerLevel)s to %(toPowerLevel)s', {
246-
userId: userId,
246+
userId,
247247
fromPowerLevel: Roles.textualPowerLevel(from, userDefault),
248248
toPowerLevel: Roles.textualPowerLevel(to, userDefault),
249249
}),
@@ -254,7 +254,7 @@ function textForPowerEvent(event) {
254254
return '';
255255
}
256256
return _t('%(senderName)s changed the power level of %(powerLevelDiffText)s.', {
257-
senderName: senderName,
257+
senderName,
258258
powerLevelDiffText: diff.join(", "),
259259
});
260260
}

0 commit comments

Comments
 (0)