We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38cd869 commit b7beec6Copy full SHA for b7beec6
1 file changed
pkg/tui/views/util.go
@@ -18,6 +18,10 @@ func matchesCronJobId(id string) bool {
18
return strings.HasPrefix(id, "crn-") && len(id) == 24
19
}
20
21
+func matchesJobId(id string) bool {
22
+ return strings.HasPrefix(id, "job-") && len(id) == 24
23
+}
24
+
25
func matchesResourceId(id string) bool {
- return matchesServiceId(id) || matchesPostgresId(id) || matchesKeyValueId(id) || matchesCronJobId(id)
26
+ return matchesServiceId(id) || matchesPostgresId(id) || matchesKeyValueId(id) || matchesCronJobId(id) || matchesJobId(id)
27
0 commit comments