code7-leia 0.1.135 → 0.1.136

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.
@@ -1409,12 +1409,15 @@ var FileArea = function FileArea() {
1409
1409
  dispatch(getFilesAction(id));
1410
1410
  }, [id]);
1411
1411
  React.useEffect(function () {
1412
+ console.log('tags: ', tags);
1412
1413
  var options = tags.map(function (tag) {
1413
1414
  return {
1414
1415
  label: tag,
1415
1416
  value: tag
1416
1417
  };
1417
1418
  });
1419
+ console.log('options: ', options);
1420
+ console.log('optionsPresset: ', optionsPresset);
1418
1421
  if (options !== optionsPresset) {
1419
1422
  setOptionsPresset(options);
1420
1423
  }