@griddo/ax 10.3.14 → 10.3.16

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.14",
4
+ "version": "10.3.16",
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": "d9d0cd327717be48374506340e8ed0c533ea34d4"
233
+ "gitHead": "903b18e1254cb901329290a35919a4223f6a62a6"
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={`${e.category}: ${e.label}`}
258
+ text={filterName}
258
259
  onDeleteAction={handleClick}
259
260
  color={e.color || categoryColors[e.category || ""]}
260
261
  />