code7-leia 0.1.135 → 0.1.137
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/code7-leia.cjs.development.js +7 -7
- package/dist/code7-leia.cjs.development.js.map +1 -1
- package/dist/code7-leia.cjs.production.min.js +1 -1
- package/dist/code7-leia.cjs.production.min.js.map +1 -1
- package/dist/code7-leia.esm.js +7 -7
- package/dist/code7-leia.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/FileArea/index.tsx +5 -4
|
@@ -1409,13 +1409,13 @@ var FileArea = function FileArea() {
|
|
|
1409
1409
|
dispatch(getFilesAction(id));
|
|
1410
1410
|
}, [id]);
|
|
1411
1411
|
React.useEffect(function () {
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1412
|
+
if (tags.length > 0) {
|
|
1413
|
+
var options = tags.map(function (tag) {
|
|
1414
|
+
return {
|
|
1415
|
+
label: tag,
|
|
1416
|
+
value: tag
|
|
1417
|
+
};
|
|
1418
|
+
});
|
|
1419
1419
|
setOptionsPresset(options);
|
|
1420
1420
|
}
|
|
1421
1421
|
}, [tags]);
|