Skip to content

Commit 546819c

Browse files
committed
tabedit: Save empty values
1 parent 4e8c464 commit 546819c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/gws/ext/action/tabedit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def api_save_data(self, req: t.IRequest, p: SaveDataParams) -> SaveDataResponse:
160160
uid = None
161161

162162
for a, v in zip(p.attributes, rec):
163-
if v is None or v == '':
163+
if v is None:
164164
continue
165165
atts.append(t.Attribute(name=a.name, value=v))
166166
if a.name == tbl.table.key_column:

0 commit comments

Comments
 (0)