kupos-ui-components-lib 9.8.9 → 9.8.10

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.
@@ -97,7 +97,9 @@ function SeatSection({ seatTypes, availableSeats, isSoldOut, priceColor, currenc
97
97
  React.createElement("span", { key: key, className: `flex items-center justify-between text-[13.33px] ${isSoldOut ? "text-[#c0c0c0]" : ""}` }, typeof val.label === "string" || typeof val.label === "number"
98
98
  ? removeDuplicateSeats && isPeru
99
99
  ? CommonService.truncateSeatLabel(val.label)
100
- : val.label
100
+ : isTrain
101
+ ? CommonService.truncateSeatLabel(val.label)
102
+ : val.label
101
103
  : null)));
102
104
  });
103
105
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kupos-ui-components-lib",
3
- "version": "9.8.9",
3
+ "version": "9.8.10",
4
4
  "description": "A reusable UI components package",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -191,7 +191,9 @@ function SeatSection({
191
191
  {typeof val.label === "string" || typeof val.label === "number"
192
192
  ? removeDuplicateSeats && isPeru
193
193
  ? CommonService.truncateSeatLabel(val.label)
194
- : val.label
194
+ : isTrain
195
+ ? CommonService.truncateSeatLabel(val.label)
196
+ : val.label
195
197
  : null}
196
198
  </span>
197
199
  </div>