diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index c166b56..6349b08 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -2,7 +2,7 @@ version: '3.8' services: profilarr: - image: santiagosayshey/profilarr:latest + image: santiagosayshey/profilarr:beta container_name: profilarr ports: - 6868:6868 diff --git a/frontend/src/components/ui/ImportModal.jsx b/frontend/src/components/ui/ImportModal.jsx index 3aeb70b..69e4cfa 100644 --- a/frontend/src/components/ui/ImportModal.jsx +++ b/frontend/src/components/ui/ImportModal.jsx @@ -1,5 +1,6 @@ import React, {useState, useEffect} from 'react'; import PropTypes from 'prop-types'; +import {Loader, Check, Upload} from 'lucide-react'; import Modal from './Modal'; import {getArrConfigs} from '@api/arr'; @@ -58,53 +59,80 @@ const ImportModal = ({isOpen, onClose, onImport, type}) => { isOpen={isOpen} onClose={onClose} title={`Import ${type}`} + width='xl' footer={ -
{error}
} -No arr instances configured
+| Name | +Type | +Select | +
|---|---|---|
| + {arr.name} + | ++ {arr.type} + | +
+
+
+
+ {selectedArr === arr.id && (
+
+ |
+
{error}
} ); };