@startinblox/components-ds4go 4.1.3 → 4.1.4

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/index.js CHANGED
@@ -5047,7 +5047,7 @@ let ie = class extends ne {
5047
5047
  ${this._displayObjects.map((e) => {
5048
5048
  const t = e;
5049
5049
  return d`<ds4go-card-fact
5050
- .object=${p}
5050
+ .object=${t}
5051
5051
  @click=${() => this._handleClickEvent(t)}
5052
5052
  ></ds4go-card-fact>`;
5053
5053
  })}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startinblox/components-ds4go",
3
- "version": "4.1.3",
3
+ "version": "4.1.4",
4
4
  "description": "Startin'blox DS4GO",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -140,7 +140,7 @@ export class Ds4goFactHolder extends ComponentObjectsHandler {
140
140
  ${this._displayObjects.map((displayObj) => {
141
141
  const fact = displayObj as Fact;
142
142
  return html`<ds4go-card-fact
143
- .object=${import.meta.env.DEV ? fact : nothing}
143
+ .object=${fact}
144
144
  @click=${() => this._handleClickEvent(fact)}
145
145
  ></ds4go-card-fact>`;
146
146
  })}