add IDisposable declaration to accompany existing Dispose() method
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
@using System.ComponentModel
|
||||
@using Oqtane.Shared
|
||||
@inject SiteState SiteState
|
||||
@implements IDisposable
|
||||
|
||||
@if (!string.IsNullOrEmpty(_title))
|
||||
{
|
||||
|
@ -4,6 +4,7 @@
|
||||
@attribute [OqtaneIgnore]
|
||||
@inject IStringLocalizer<SharedResources> SharedLocalizer
|
||||
@inject IStringLocalizerFactory LocalizerFactory
|
||||
@implements IDisposable
|
||||
|
||||
<span class="app-moduletitle">
|
||||
@((MarkupString)title)
|
||||
|
@ -1,6 +1,7 @@
|
||||
@using System.ComponentModel
|
||||
@namespace Oqtane.UI
|
||||
@inject SiteState SiteState
|
||||
@implements IDisposable
|
||||
|
||||
@if (ComponentType != null && _visible)
|
||||
{
|
||||
|
@ -13,6 +13,7 @@
|
||||
@inject ILogService LogService
|
||||
@inject IJSRuntime JSRuntime
|
||||
@implements IHandleAfterRender
|
||||
@implements IDisposable
|
||||
|
||||
@if (!string.IsNullOrEmpty(_error))
|
||||
{
|
||||
|
Reference in New Issue
Block a user