fix: recipe versions sorts, aligns & spaces

This commit is contained in:
2023-09-24 11:18:26 +02:00
parent 533edbf172
commit bf648eeb5d
2 changed files with 12 additions and 2 deletions

View File

@ -191,6 +191,12 @@ func (t *JSONTable) SetAutoMergeCellsByColumnIndex(cols []int) {
t.tbl.SetAutoMergeCellsByColumnIndex(cols)
}
// Stuff we should implement but we just proxy for now.
func (t *JSONTable) SetAlignment(align int) {
// FIXME
t.tbl.SetAlignment(align)
}
func (t *JSONTable) SetAutoMergeCells(auto bool) {
// FIXME
t.tbl.SetAutoMergeCells(auto)