fix small screen spacing.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-10-31 23:41:23 -06:00
parent 745b262dfc
commit f6e0873d83
4 changed files with 37 additions and 18 deletions

View File

@@ -55,9 +55,16 @@ namespace CarCareTracker.Controllers
{
return View(model: tab);
}
public IActionResult Kiosk()
{
return View();
public IActionResult Kiosk(string exceptions)
{
try {
var exceptionList = string.IsNullOrWhiteSpace(exceptions) ? new List<int>() : exceptions.Split(',').Select(x => int.Parse(x)).ToList();
return View(exceptionList);
}
catch (Exception ex)
{
return View(new List<int>());
}
}
public IActionResult KioskContent(List<int> exceptionList)
{