()
| 178 | } |
| 179 | |
| 180 | func (m *TuiModel) GetColumnData() []interface{} { |
| 181 | schemaData := m.GetSchemaData() |
| 182 | if schemaData == nil { |
| 183 | return []interface{}{} |
| 184 | } |
| 185 | return schemaData[m.GetSelectedColumnName()] |
| 186 | } |
| 187 | |
| 188 | func (m *TuiModel) GetRowData() map[string]interface{} { |
| 189 | defer func() { |
no test coverage detected