Skip to content

Commit 05990f0

Browse files
benvinegarmattrobenolt
authored andcommitted
Fix broken translation in org dashboard sidebar (fixes #2633)
1 parent c2b50f8 commit 05990f0

File tree

1 file changed

+1
-1
lines changed
  • src/sentry/static/sentry/app/components/activity

1 file changed

+1
-1
lines changed

src/sentry/static/sentry/app/components/activity/item.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const ActivityItem = React.createClass({
8080
});
8181
case 'set_muted':
8282
if (data.snoozeDuration) {
83-
return tct('[author] snoozed [link:an issue] for %(duration)s', {
83+
return tct('[author] snoozed [link:an issue] for [duration]', {
8484
author: author,
8585
duration: <Duration seconds={data.snoozeDuration * 60} />,
8686
link: <Link to={`/${orgId}/${project.slug}/issues/${issue.id}/`} />

0 commit comments

Comments
 (0)