diff --git a/kernel/av/cell.go b/kernel/av/cell.go index c7c06c567..9a2533488 100644 --- a/kernel/av/cell.go +++ b/kernel/av/cell.go @@ -18,8 +18,13 @@ package av type Cell struct { ID string `json:"id"` - Value string `json:"value"` + Value *CellValue `json:"value"` RenderValue interface{} `json:"renderValue"` Color string `json:"color"` BgColor string `json:"bgColor"` } + +type CellValue struct { + Type ColumnType `json:"type"` + Value interface{} `json:"value"` +}