Skip to content

Commit c9fdf3d

Browse files
committed
fix: support parent resources which have both foreighnKey and primaryKey in same column refix
1 parent 5b0d539 commit c9fdf3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom/InlineList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ const endFilters = computed(() => {
194194
195195
let primaryKeyValue = null;
196196
if (primaryKeyColumn.foreignResource) {
197-
primaryKeyValue = props.record[primaryKeyColumn.name].value;
197+
primaryKeyValue = props.record[primaryKeyColumn.name].pk;
198198
} else {
199199
primaryKeyValue = props.record[primaryKeyColumn.name];
200200
}

0 commit comments

Comments
 (0)