diff --git a/bitwpfi.php b/bitwpfi.php index ec10228c1..5db202ecc 100644 --- a/bitwpfi.php +++ b/bitwpfi.php @@ -4,7 +4,7 @@ * Plugin Name: Bit Integrations * Plugin URI: https://bitapps.pro/bit-integrations * Description: Bit Integrations is a platform that integrates with over 290+ different platforms to help with various tasks on your WordPress site, like WooCommerce, Form builder, Page builder, LMS, Sales funnels, Bookings, CRM, Webhooks, Email marketing, Social media and Spreadsheets, etc - * Version: 2.6.5 + * Version: 2.6.6 * Author: Automation & Integration Plugin - Bit Apps * Author URI: https://bitapps.pro * Text Domain: bit-integrations @@ -24,7 +24,7 @@ $btcbi_db_version = '1.1'; // Define most essential constants. -define('BTCBI_VERSION', '2.6.5'); +define('BTCBI_VERSION', '2.6.6'); define('BTCBI_PLUGIN_MAIN_FILE', __FILE__); require_once plugin_dir_path(__FILE__) . 'includes/loader.php'; diff --git a/frontend-dev/src/components/AllIntegrations/MailerLite/EditMailerLite.jsx b/frontend-dev/src/components/AllIntegrations/MailerLite/EditMailerLite.jsx index 97f9da421..ad7edf948 100644 --- a/frontend-dev/src/components/AllIntegrations/MailerLite/EditMailerLite.jsx +++ b/frontend-dev/src/components/AllIntegrations/MailerLite/EditMailerLite.jsx @@ -21,6 +21,7 @@ function EditMailerLite({ allIntegURL }) { const [flow, setFlow] = useRecoilState($newFlow) const [mailerLiteConf, setMailerLiteConf] = useRecoilState($actionConf) const [isLoading, setIsLoading] = useState(false) + const [name, setName] = useState(mailerLiteConf?.name || '') const [loading, setLoading] = useState({ list: false, field: false, @@ -56,6 +57,16 @@ function EditMailerLite({ allIntegURL }) { } }, []) + const handleEditIntegName = e => { + setName(e.target.value) + + setMailerLiteConf(prevConf => + create(prevConf, draftConF => { + draftConF.name = e.target.value + }) + ) + } + return (