Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed Feb 16, 2024
1 parent d89457e commit 4b66872
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/protyle/render/av/cell.ts
Expand Up @@ -752,7 +752,8 @@ export const dragFillCellsValue = (protyle: IProtyle, nodeElement: HTMLElement,
if (["rollup", "template", "created", "updated"].includes(item.type)) {
return;
}
const data = originData[originKeys[index % originKeys.length]][cellIndex];
// https://ld246.com/article/1707975507571 数据库下拉填充数据后异常
const data = JSON.parse(JSON.stringify(originData[originKeys[index % originKeys.length]][cellIndex]));
data.id = item.id;
const keyID = item.colId;
if (data.type === "block") {
Expand Down

0 comments on commit 4b66872

Please sign in to comment.