File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/core/src/lib/core Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ async function updateSingle(
137137
138138 const updatedItem = await context . prisma [ list . listKey ] . update ( {
139139 where : { id : item . id } ,
140- data
140+ data,
141141 } ) ;
142142
143143 // After Operation
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ async function fetchRelatedItems(
117117 accessFilters
118118 ) ;
119119
120- const results = await context . prisma [ foreignList . listKey ] . findMany ( { where : resolvedWhere } ) ;
120+ const results = await context . prisma [ foreignList . listKey ] . findMany ( { where : resolvedWhere } ) ;
121121 const resultsById = new Map ( results . map ( ( x : any ) => [ x [ idFieldKey ] , x ] ) ) ;
122122
123123 return toFetch . map ( id => resultsById . get ( id ) ) ;
You can’t perform that action at this time.
0 commit comments