Help Document show wrong path image

Hi All

I install erpnext on my server, then change version (erpnext 10.0.6, frappe 10.0.7),
But help document can’t show image, I check the path of image is wrong,
Could you help me update path of image or how to fix this? thanks

Wrong path: /docs/assets/img/human-resources/salary-structure.png
Correct path: /assets/erpnext_docs/assets/img/human-resources/salary-structure.png

Hi All

I can’t find the solution run update path by bench. So I use script to update database (temp solution), It’s ok.

UPDATE help
SET `content` = replace(content, '/docs/assets/img', '/assets/erpnext_docs/assets/img')
where path LIKE '/erpnext/%';

UPDATE help
SET `content` = replace(content, '/docs/assets/img', '/assets/frappe_docs/assets/img')
where path LIKE '/frappe/%';