We should get someone from Purdue to do this. They are the boilerplaters.

This commit is contained in:
2025-05-12 22:58:55 -04:00
parent 48d7730a5c
commit 9dbd7ecab8
11 changed files with 393 additions and 103 deletions

View File

@@ -22,7 +22,9 @@ func (m Model) View() string {
}
for _, field := range *m.selectedParams {
output += field.Input().View() + "\n\n"
for _, f := range field.Input() {
output += f.View() + "\n\n"
}
}
if *m.url == "" {
@@ -31,8 +33,8 @@ func (m Model) View() string {
params := make([]string, 0)
for _, field := range *m.selectedParams {
if field.value() != "" {
params = append(params, field.key()+":"+field.value())
if field.Value() != "" {
params = append(params, field.Key()+":"+field.Value())
}
}