From 8e24ed0d5b83b95cc4664976b8b7f8076fa2e2ec Mon Sep 17 00:00:00 2001 From: lavenderguitar Date: Mon, 28 Aug 2023 12:40:46 -0400 Subject: [PATCH] Update initial view to display all instances. --- go/instances.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/instances.go b/go/instances.go index 90b8b69..7adae5f 100644 --- a/go/instances.go +++ b/go/instances.go @@ -101,7 +101,7 @@ func fetchAndDisplayInstances(state string, svc *ec2.EC2, list *tview.List, deta // Helper function to display the instance details of the first instance in the list. Function executes when application first loads. func initialDisplay(svc *ec2.EC2, list *tview.List, detailsTable *tview.Table) { - fetchAndDisplayInstances("running", svc, list, detailsTable) + fetchAndDisplayInstances("", svc, list, detailsTable) } // Helper function to display the instance details.