authscape 1.0.532 → 1.0.534

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/index.js CHANGED
@@ -5168,7 +5168,7 @@ function MappedColumn(_ref) {
5168
5168
  }, "Matched"))), /*#__PURE__*/_react["default"].createElement(_Typography["default"], {
5169
5169
  variant: "body2",
5170
5170
  color: "text.secondary"
5171
- }, !isMapped && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, "This column is matched"), isMapped && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, "This column is not matched. If not matched it will not import"))), /*#__PURE__*/_react["default"].createElement(_CardActions["default"], {
5171
+ }, !isMapped && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, "This column is matched with ", toName), isMapped && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, "This column is not matched. If not matched it will not import"))), /*#__PURE__*/_react["default"].createElement(_CardActions["default"], {
5172
5172
  sx: {
5173
5173
  backgroundColor: isMapped ? notMatchedColor : matchedColor
5174
5174
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.532",
3
+ "version": "1.0.534",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -36,7 +36,7 @@ export function MappedColumn({companyId, documentId, documentType, documentMappi
36
36
  }
37
37
  </Box>
38
38
  <Typography variant="body2" color="text.secondary">
39
- {!isMapped && <>This column is matched</>}
39
+ {!isMapped && <>This column is matched with {toName}</>}
40
40
  {isMapped && <>This column is not matched. If not matched it will not import</>}
41
41
 
42
42
  </Typography>