CopyRequest -> Copy & CopyAs

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-05-13 18:07:23 +02:00
parent de254b4e52
commit c7392474b7
15 changed files with 312 additions and 10 deletions
+2 -2
View File
@@ -50,7 +50,7 @@ func (m *Model) renderDetailPanel(h int) string {
}
info, ok := m.selected()
if !ok {
return style.RenderWithTitle(panelStyle, "Detail", "", m.width, h)
return style.RenderWithTitle(panelStyle, icons.I.Detail+"Detail", "", m.width, h)
}
statusSt := lipgloss.NewStyle().Foreground(s.Error)
@@ -84,7 +84,7 @@ func (m *Model) renderDetailPanel(h int) string {
}
inner := lipgloss.JoinVertical(lipgloss.Left, parts...)
return style.RenderWithTitle(panelStyle, "Detail", inner, m.width, h)
return style.RenderWithTitle(panelStyle, icons.I.Detail+"Detail", inner, m.width, h)
}
func renderPluginDescription(desc string, width int) string {