Succeeded block not showing in Dashboard

Inspecting my jobs in Hangfire Dashboard, I see that for Succeeded Jobs, some jobs have Succeeded block displaying Latency, Duration, and Result, and some other jobs don’t have this Succeeded block (only Enqueued, Processing, and Created block).

There is one job that I would like to inspect the result, but not showing the Succeeded block. What should I do so the job shows the Succeeded block (and the Result)?

FYI the method used in the job is already returning something (an object), not void. The returned object is serializable. Does the Result has size limit?

I suspected the Result has size limit, but I tried in another job outputting 200K characters and the Succeeded block shows, so I don’t think that’s the problem.

I tried async and sync in another job, both have Succeeded blocks.