U4-11088 - XML Data Integrity "Fix Button" not Visible (#3782)

This commit is contained in:
Laura Weatherhead
2018-11-27 19:52:20 +00:00
committed by Sebastiaan Janssen
parent d1457cfd75
commit 03d965eada

View File

@@ -181,7 +181,10 @@ namespace Umbraco.Web.HealthCheck.Checks.DataIntegrity
if (totalXml != total || totalNonGuidXml > 0)
{
//if the counts don't match
actions.Add(new HealthCheckAction(CheckContentXmlTableAction, Id));
actions.Add(new HealthCheckAction(CheckContentXmlTableAction, Id)
{
Name = _textService.Localize("healthcheck/rectifyButton")
});
hasError = true;
}
@@ -195,4 +198,4 @@ namespace Umbraco.Web.HealthCheck.Checks.DataIntegrity
};
}
}
}
}