update Npgsql.EntityFrameworkCore.PostgreSQL to version 8.0.2
This commit is contained in:
@ -6,7 +6,7 @@ namespace Oqtane.UI
|
||||
{
|
||||
public static class InteractiveRenderMode
|
||||
{
|
||||
public static IComponentRenderMode? GetInteractiveRenderMode(string runtime, bool prerender)
|
||||
public static IComponentRenderMode GetInteractiveRenderMode(string runtime, bool prerender)
|
||||
{
|
||||
switch (runtime)
|
||||
{
|
||||
@ -17,7 +17,7 @@ namespace Oqtane.UI
|
||||
case Runtimes.Auto:
|
||||
return new InteractiveAutoRenderMode(prerender: prerender);
|
||||
}
|
||||
return null; // default to inherit existing render mode
|
||||
return new InteractiveServerRenderMode(prerender: prerender);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -12,7 +12,8 @@ else
|
||||
|
||||
@code {
|
||||
// this component is on the static side of the render mode boundary
|
||||
// it passes state as serializable parameters across the boundary so that the state can be used by downstream interactive components
|
||||
// it passes state as serializable parameters across the boundary
|
||||
// this enables the state to be used by downstream interactive components
|
||||
|
||||
[CascadingParameter]
|
||||
protected PageState PageState { get; set; }
|
||||
@ -20,6 +21,7 @@ else
|
||||
[CascadingParameter]
|
||||
private Module ModuleState { get; set; }
|
||||
|
||||
|
||||
[Obsolete("AddModuleMessage is deprecated. Use ModuleBase.AddModuleMessage instead.", false)]
|
||||
public void AddModuleMessage(string message, MessageType type)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user