🎨 Update av

This commit is contained in:
Daniel 2023-06-10 15:00:04 +08:00
parent bf96331cf6
commit 54799578d7
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 70 additions and 5 deletions

View file

@ -202,6 +202,5 @@ func RebuildAttributeViewTable(tx *sql.Tx, av *AttributeView) (err error) {
return
}
}
return
}

View file

@ -17,8 +17,9 @@
package av
type Cell struct {
ID string `json:"id"`
Value string `json:"value"`
Color string `json:"color"`
BgColor string `json:"bgColor"`
ID string `json:"id"`
Value string `json:"value"`
RenderValue interface{} `json:"renderValue"`
Color string `json:"color"`
BgColor string `json:"bgColor"`
}