Moved styles to a global.css stylesheet. Also added basic validation with a transition
This commit is contained in:
@@ -11,14 +11,9 @@ namespace Jellyfin.Plugin.MediaCleaner;
|
||||
public class Configuration : BasePluginConfiguration
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the http address for your Radarr instance.
|
||||
/// Gets or sets the http and port address for your Radarr instance.
|
||||
/// </summary>
|
||||
public string RadarrHTTPAddress { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the port for your Radarr instance.
|
||||
/// </summary>
|
||||
public string RadarrPort { get; set; } = string.Empty;
|
||||
public string RadarrAddress { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the api for your Radarr instance.
|
||||
@@ -26,14 +21,9 @@ public class Configuration : BasePluginConfiguration
|
||||
public string RadarrAPIKey { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the http address for your Sonarr instance.
|
||||
/// Gets or sets the http and port address for your Sonarr instance.
|
||||
/// </summary>
|
||||
public string SonarrHTTPAddress { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the port for your Sonarr instance.
|
||||
/// </summary>
|
||||
public string SonarrPort { get; set; } = string.Empty;
|
||||
public string SonarrAddress { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the api for your Sonarr instance.
|
||||
|
||||
Reference in New Issue
Block a user