Skip to content

Commit 454e1a6

Browse files
authored
Merge pull request #105 from Bit-Apps-Pro/rishad-dev-tmp
Version updated to 2.6.1
2 parents 9d60f61 + b445dda commit 454e1a6

21 files changed

+428
-799
lines changed

bitwpfi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: Bit Integrations
55
* Plugin URI: https://bitapps.pro/bit-integrations
66
* 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
7-
* Version: 2.6.0
7+
* Version: 2.6.1
88
* Author: Automation & Integration Plugin - Bit Apps
99
* Author URI: https://bitapps.pro
1010
* Text Domain: bit-integrations
@@ -24,7 +24,7 @@
2424
$btcbi_db_version = '1.1';
2525

2626
// Define most essential constants.
27-
define('BTCBI_VERSION', '2.6.0');
27+
define('BTCBI_VERSION', '2.6.1');
2828
define('BTCBI_PLUGIN_MAIN_FILE', __FILE__);
2929

3030
require_once plugin_dir_path(__FILE__) . 'includes/loader.php';

frontend-dev/src/components/AllIntegrations/EditCustomFormSubmissionInteg.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@ function EditCustomFormSubmissionInteg({ setSnackbar }) {
127127
bitsFetch({}, tasksAction, null, tasksMethod).then(res => {
128128
setFormsLoading(false)
129129
if (res.success) {
130-
setAllTasks(res.data)
130+
const tasks = res.data
131+
setAllTasks(tasks)
132+
setSkipPrimaryKey(shouldSkipPrimaryKey(tasks, flow))
131133
}
132134
})
133135
}

frontend-dev/src/components/AllIntegrations/EditCustomTrigger.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ function EditCustomTrigger() {
200200
<div className="flx flx-between">
201201
<button
202202
onClick={handleFetch}
203-
className={`btn btcd-btn-lg sh-sm flx ${isLoading ? 'red' : flow.flow_details?.rawData ? 'gray' : 'purple'}`}
203+
className={`btn btcd-btn-lg sh-sm flx ${isLoading ? 'purple' : flow.flow_details?.rawData ? 'gray' : 'purple'}`}
204204
type="button">
205205
{isLoading
206206
? __('Stop', 'bit-integrations')

frontend-dev/src/components/AllIntegrations/Salesforce/Salesforce.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function Salesforce({ formFields, setFlow, flow, allIntegURL }) {
3737
type: 'Salesforce',
3838
clientId: '',
3939
clientSecret: '',
40-
field_map: [{ formField: '', selesforceField: '' }],
40+
field_map: [],
4141
selesforceActionModules: action_modules,
4242
action_modules,
4343
actions: {}

0 commit comments

Comments
 (0)