awing-library 2.1.191-dev → 2.1.192-dev
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.
|
@@ -126,6 +126,7 @@ function SubCampaignDetail(props) {
|
|
|
126
126
|
? translationText.helperText
|
|
127
127
|
: '', children: Object.values(Enum_2.AnalyticType)
|
|
128
128
|
.filter(function (item) { return !isNaN(Number(item)); })
|
|
129
|
+
.filter(function (item) { return item !== Enum_2.AnalyticType.AuthenticationSuccess; })
|
|
129
130
|
.filter(Boolean)
|
|
130
131
|
.map(function (type) { return ((0, jsx_runtime_1.jsx)(material_1.MenuItem, { value: type, children: t("Campaign.BillingUnit.".concat((0, lodash_1.capitalize)((0, lodash_1.camelCase)(Enum_2.AnalyticType[type])))) }, type)); }) }) })] })), (0, jsx_runtime_1.jsx)(material_1.Grid, { item: true, xs: 4, style: { padding: 8 }, children: (0, jsx_runtime_1.jsx)(material_1.FormControlLabel, { control: (0, jsx_runtime_1.jsx)(material_1.Checkbox, { checked: subCampaign.isReserved, onChange: function (e) {
|
|
131
132
|
e.persist();
|
|
@@ -79,5 +79,5 @@ var addTrackingCode = function (trackingValid, commonHtml, trackingCode) {
|
|
|
79
79
|
return commonHtml;
|
|
80
80
|
};
|
|
81
81
|
exports.addTrackingCode = addTrackingCode;
|
|
82
|
-
var validTabInfo = function (infoData) { return !!infoData.directoryId && (0, validation_1.textValidation)(infoData.title, 200).valid; };
|
|
82
|
+
var validTabInfo = function (infoData) { return !!infoData.directoryId && (0, validation_1.textValidation)(infoData.title, 200, true, false).valid; };
|
|
83
83
|
exports.validTabInfo = validTabInfo;
|