@griddo/ax 10.3.14 → 10.3.15
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@griddo/ax",
|
|
3
3
|
"description": "Griddo Author Experience",
|
|
4
|
-
"version": "10.3.
|
|
4
|
+
"version": "10.3.15",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
7
|
"Carlos Torres <carlos.torres@secuoyas.com>",
|
|
@@ -230,5 +230,5 @@
|
|
|
230
230
|
"publishConfig": {
|
|
231
231
|
"access": "public"
|
|
232
232
|
},
|
|
233
|
-
"gitHead": "
|
|
233
|
+
"gitHead": "4fc7697e23d1eb162e0675498f9fb13d17078cf6"
|
|
234
234
|
}
|
|
@@ -251,10 +251,11 @@ const AutoItem = (props: IProps): JSX.Element => {
|
|
|
251
251
|
{filter &&
|
|
252
252
|
filter.map((e: IFilter) => {
|
|
253
253
|
const handleClick = () => handleDeleteTag(e.id);
|
|
254
|
+
const filterName = e.category ? `${e.category}: ${e.label}` : e.label;
|
|
254
255
|
return (
|
|
255
256
|
<Tag
|
|
256
257
|
key={e.label}
|
|
257
|
-
text={
|
|
258
|
+
text={filterName}
|
|
258
259
|
onDeleteAction={handleClick}
|
|
259
260
|
color={e.color || categoryColors[e.category || ""]}
|
|
260
261
|
/>
|