File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,11 @@ export default function Comment ({
261
261
: ! noReply &&
262
262
< Reply depth = { depth + 1 } item = { item } replyOpen = { replyOpen } onCancelQuote = { cancelQuote } onQuoteReply = { quoteReply } quote = { quote } >
263
263
{ root . bounty && ! bountyPaid && < PayBounty item = { item } /> }
264
+ < div className = 'ms-auto' >
265
+ { item . newComments ?. length > 0 && (
266
+ < ShowNewComments newComments = { item . newComments } itemId = { item . id } />
267
+ ) }
268
+ </ div >
264
269
</ Reply > }
265
270
{ children }
266
271
< div className = { styles . comments } >
@@ -276,9 +281,6 @@ export default function Comment ({
276
281
: null }
277
282
{ /* TODO: add link to more comments if they're limited */ }
278
283
</ div >
279
- { item . newComments ?. length > 0 && (
280
- < ShowNewComments newComments = { item . newComments } itemId = { item . id } />
281
- ) }
282
284
</ div >
283
285
)
284
286
) }
You can’t perform that action at this time.
0 commit comments