mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 00:15:48 +01:00
🐛 Fix nullable integration type
This commit is contained in:
@@ -16,7 +16,7 @@ export interface ServiceType extends TileBaseType {
|
||||
behaviour: ServiceBehaviourType;
|
||||
network: ServiceNetworkType;
|
||||
appearance: ServiceAppearanceType;
|
||||
integration?: ServiceIntegrationType | null;
|
||||
integration: ServiceIntegrationType;
|
||||
}
|
||||
|
||||
export type ConfigServiceType = Omit<ServiceType, 'integration'> & {
|
||||
@@ -51,7 +51,7 @@ export type IntegrationType =
|
||||
| 'nzbGet';
|
||||
|
||||
export type ServiceIntegrationType = {
|
||||
type: IntegrationType;
|
||||
type: IntegrationType | null;
|
||||
properties: ServiceIntegrationPropertyType[];
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user