We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a71428 commit f05627dCopy full SHA for f05627d
src/blocks/table-row.vue
@@ -38,7 +38,8 @@ export default {
38
},
39
methods: {
40
cell(columnId) {
41
- return this.properties[columnId];
+ // return empty notion decorated text if row is empty
42
+ return this?.properties?.[columnId] ?? [[" ", false]];
43
44
isHeader(columnIndex) {
45
return (
0 commit comments