Use a different format for path

Seems that _join_pathstring() is the wrong thing to use here.
This commit is contained in:
Sajith Sasidharan 2020-07-15 13:43:50 -04:00
parent 3c079bef73
commit 69afd292c2

View File

@ -573,7 +573,7 @@ class DeepCheckResultsRendererElement(Element, ResultsBase, ReloadMixin):
result = results.get(path) result = results.get(path)
storage_index = result.get_storage_index() storage_index = result.get_storage_index()
object = { object = {
"path": self._join_pathstring(path), "path": self._html(path),
"healthy": str(result.is_healthy()), "healthy": str(result.is_healthy()),
"recoverable": str(result.is_recoverable()), "recoverable": str(result.is_recoverable()),
"storage_index": self._render_si_link(req, storage_index), "storage_index": self._render_si_link(req, storage_index),