Refactoring, database structure changed
This commit is contained in:
16
WatchIt.Website/Components/Pages/Page.cs
Normal file
16
WatchIt.Website/Components/Pages/Page.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace WatchIt.Website.Components.Pages;
|
||||
|
||||
public abstract class Page : Component
|
||||
{
|
||||
#region PRIVATE METHODS
|
||||
|
||||
protected override async Task OnFirstRenderAsync()
|
||||
{
|
||||
await base.OnFirstRenderAsync();
|
||||
|
||||
Base.CustomBackground = null;
|
||||
StateHasChanged();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user