mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 05:26:08 +00:00
Merge pull request #12038 from nocodb/nc-fix/attachment-without-id
show attachment without id
This commit is contained in:
@@ -5584,7 +5584,7 @@ class BaseModelSqlv2 implements IBaseModelSqlV2 {
|
||||
|
||||
if (d[col.id]?.length) {
|
||||
d[col.id] = d[col.id].filter(
|
||||
(attr) => attr.id && !attr.id?.startsWith('temp_'),
|
||||
(attr) => !attr.id?.startsWith('temp_'),
|
||||
);
|
||||
for (let i = 0; i < d[col.id].length; i++) {
|
||||
if (typeof d[col.id][i] === 'string') {
|
||||
|
||||
Reference in New Issue
Block a user