Skip to content

Commit

Permalink
fix: permission omission in table list
Browse files Browse the repository at this point in the history
  • Loading branch information
boris-w committed May 20, 2024
1 parent 6ea342b commit 152a743
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,10 @@ export class TableController {
return snapshotBulk.map((snapshot) => {
return {
...snapshot,
permission: permissionMap[snapshot.id],
data: {
...snapshot.data,
permission: permissionMap[snapshot.id],
},
};
});
}
Expand Down

0 comments on commit 152a743

Please sign in to comment.