Pass grv on gotoResource as a String (#3149)

Signed-off-by: Fabio Felici <fabio.felici96c@gmail.com>
mine
rhslack 2025-02-23 18:50:50 +01:00 committed by GitHub
parent 7bb4da7adc
commit f8fbd981d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ func (a *Alias) gotoCmd(evt *tcell.EventKey) *tcell.EventKey {
return evt
}
gvr := client.NewGVR(path)
a.App().gotoResource(gvr.AsResourceName(), "", true, true)
a.App().gotoResource(gvr.String(), "", true, true)
return nil
}