@imposium-hub/components 1.43.1 → 1.43.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/publish-wizard/publish/EmailWorkflow.tsx +6 -2
- package/constants/copy.ts +2 -1
- package/dist/components.js +2 -2
- package/dist/components.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/styles.css.map +1 -1
- package/dist/styles.less +8 -0
- package/dist/styles.less.map +1 -1
- package/less/components/align-columns.less +8 -0
- package/package.json +1 -1
- package/redux/actions/active-batch.ts +107 -10
|
@@ -337,13 +337,17 @@ class EmailWorkflow extends React.PureComponent<IEmailWorkflowProps, IEmailWorkf
|
|
|
337
337
|
|
|
338
338
|
if (colOpts.length < varArray.length) {
|
|
339
339
|
return (
|
|
340
|
-
|
|
340
|
+
<>
|
|
341
|
+
<h2>{copy.publish.titleMissingColumns}</h2>
|
|
342
|
+
<HRule/>
|
|
343
|
+
<p className='missingColumns'>{`${copy.publish.csvMissingColumns} ${showMissing}`}</p>
|
|
344
|
+
</>
|
|
341
345
|
);
|
|
342
346
|
} else {
|
|
343
347
|
return (
|
|
344
348
|
<div className = 'align-columns' >
|
|
349
|
+
<h2 className='match-columns'>{`${copy.publish.csvMatchColumns}`}</h2>
|
|
345
350
|
<HRule/>
|
|
346
|
-
<p className='match-columns'>{`${copy.publish.csvMatchColumns}`}</p>
|
|
347
351
|
|
|
348
352
|
<table>
|
|
349
353
|
<thead>
|
package/constants/copy.ts
CHANGED
|
@@ -137,7 +137,8 @@ export const publish = {
|
|
|
137
137
|
creatingLinks: 'Creating User Links... (please wait)',
|
|
138
138
|
importingData: 'Importing Data... (please wait)',
|
|
139
139
|
downloadDesc: 'Your CSV data file is ready to download with an embed code you can import into your email platform to send out.',
|
|
140
|
-
|
|
140
|
+
titleMissingColumns: 'Warning: ',
|
|
141
|
+
csvMissingColumns: 'Some of your column names did not match up with the variables in the story. Please ensure these variables line up and then re-upload the csv: ',
|
|
141
142
|
csvMatchColumns: 'Please match the column(s) provided to the story variables:',
|
|
142
143
|
// export
|
|
143
144
|
exportBatchOfVideo: 'Export batch of videos',
|