mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
Fix: Grids will no longer display alerts when navigating to another page while the grid is still loading.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
@model List<MissingEpisodeModel>
|
||||
@using NzbDrone.Common
|
||||
@using NzbDrone.Web.Helpers
|
||||
@using NzbDrone.Web.Models;
|
||||
@{ViewBag.Title="Missing";}
|
||||
@@ -48,4 +49,9 @@
|
||||
.Pageable(
|
||||
c =>
|
||||
c.PageSize(20).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
|
||||
.ClientEvents(clientEvents =>
|
||||
{
|
||||
if (EnviromentProvider.IsProduction)
|
||||
clientEvents.OnError("grid_onError");
|
||||
})
|
||||
.Render();}
|
||||
|
||||
Reference in New Issue
Block a user