@kiva/kv-components 3.63.0 → 3.63.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.63.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.63.0...@kiva/kv-components@3.63.1) (2024-03-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * fix data reference for comment list item ([0955f28](https://github.com/kiva/kv-ui-elements/commit/0955f28b8deeb067e8d393c2365dbdcab79e92df))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.63.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.62.1...@kiva/kv-components@3.63.0) (2024-03-08)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.63.0",
3
+ "version": "3.63.1",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -75,5 +75,5 @@
75
75
  "optional": true
76
76
  }
77
77
  },
78
- "gitHead": "4b633ea152b2c305b72f1db62f703fdc0f657f24"
78
+ "gitHead": "1738a3cf8256bc15231d79008d3a23533a78fdeb"
79
79
  }
@@ -161,7 +161,7 @@ export default {
161
161
 
162
162
  const childComments = computed(() => comment?.value?.latest_children?.comment ?? null);
163
163
  const childLikes = computed(() => comment?.value?.latest_children?.like ?? []);
164
- const likedObject = computed(() => childLikes.value.find((child) => child.user.data.publicLenderId === userPublicId.value)); // eslint-disable-line max-len
164
+ const likedObject = computed(() => childLikes.value.find((child) => child?.user?.data?.publicLenderId === userPublicId.value)); // eslint-disable-line max-len
165
165
  const isLiked = computed(() => likedObject.value !== undefined);
166
166
 
167
167
  const replyClick = () => {