diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index ce8fd29809..142a3952e2 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -6137,6 +6137,10 @@ if (typeof m.Size == 'number') { x += addDetailItem("Capacity", format("{0} Mb", Math.floor(m.Size / 1024 / 1024)), s); } if (typeof m.Size == 'string') { x += addDetailItem("Capacity", EscapeHtml(m.Size), s); } } + if(hardware.windows && hardware.windows.drives && m.Model){ + const foundObject = hardware.windows.drives.find(obj => obj['Model'] === m.Model); + if(foundObject) x += addDetailItem("Status", EscapeHtml(foundObject.Status), s); + } x += ''; } } diff --git a/views/default.handlebars b/views/default.handlebars index 34b3cd2428..2f68912d51 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -11950,6 +11950,10 @@ if (typeof m.Size == 'number') { x += addDetailItem("Capacity", format("{0} Mb", Math.floor(m.Size / 1024 / 1024)), s); } if (typeof m.Size == 'string') { x += addDetailItem("Capacity", EscapeHtml(m.Size), s); } } + if(hardware.windows && hardware.windows.drives && m.Model){ + const foundObject = hardware.windows.drives.find(obj => obj['Model'] === m.Model); + if(foundObject) x += addDetailItem("Status", EscapeHtml(foundObject.Status), s); + } x += ''; } }