()
| 280 | } |
| 281 | |
| 282 | func (m snapshotListModel) hasCreatingSnapshots() bool { |
| 283 | for _, s := range m.snapshots { |
| 284 | if s.Status == "CREATING" { |
| 285 | return true |
| 286 | } |
| 287 | } |
| 288 | return false |
| 289 | } |
| 290 | |
| 291 | func (m snapshotListModel) formatStatus(status string, width int) string { |
| 292 | var style lipgloss.Style |