indicator-ui 0.0.79 → 0.0.80

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/dist/index.js CHANGED
@@ -6367,7 +6367,7 @@ const notSensitiveCheckNameField = (value, field) => {
6367
6367
  const checkNameField = (value, field) => {
6368
6368
  const convertValue = typeof value === "object" && value.length === 1 ? value[0] : value;
6369
6369
  const convertField = typeof field === "object" && field.length === 1 ? field[0] : field;
6370
- return convertValue.toString() === convertField.toString();
6370
+ return convertValue?.toString() === convertField?.toString();
6371
6371
  };
6372
6372
  const comp = (a, b) => {
6373
6373
  const arrA = typeof a === 'object' ? a : [a];