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 7565ff8 commit f6ab1a0Copy full SHA for f6ab1a0
plugins/qeta-react/src/components/AuthorBox/AuthorBoxes.tsx
@@ -35,7 +35,11 @@ export const AuthorBoxes = (props: { entity: PostAnswerEntity }) => {
35
<AuthorBox
36
userEntityRef={entity.author}
37
time={entity.created}
38
- label={t('authorBox.answeredAtTime')}
+ label={
39
+ isAnswer(entity)
40
+ ? t('authorBox.answeredAtTime')
41
+ : t('authorBox.postedAtTime')
42
+ }
43
expert={isAnswer(entity) ? entity.expert : false}
44
anonymous={entity.anonymous}
45
/>
0 commit comments