Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions block.go
Original file line number Diff line number Diff line change
Expand Up @@ -834,9 +834,9 @@ func decodeBlock(raw map[string]interface{}) (Block, error) {
b = &TemplateBlock{}
case BlockTypeSyncedBlock:
b = &SyncedBlock{}
case BlockTypeTableBlock:
case BlockTypeTable:
b = &TableBlock{}
case BlockTypeTableRowBlock:
case BlockTypeTableRow:
b = &TableRowBlock{}

case BlockTypeUnsupported:
Expand Down
4 changes: 2 additions & 2 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ const (
BlockTypeLinkToPage BlockType = "link_to_page"
BlockTypeTemplate BlockType = "template"
BlockTypeSyncedBlock BlockType = "synced_block"
BlockTypeTableBlock BlockType = "table"
BlockTypeTableRowBlock BlockType = "table_row"
BlockTypeTable BlockType = "table"
BlockTypeTableRow BlockType = "table_row"
BlockTypeUnsupported BlockType = "unsupported"
)

Expand Down
Loading