From dc8e498d4b95f66898ee1d85e49e86c016938e3b Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Wed, 24 Dec 2025 14:20:53 -0700 Subject: UI bug when first row of data has no instances --- lisp/aws/aws.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/aws/aws.lisp b/lisp/aws/aws.lisp index b96d768..74d1c54 100644 --- a/lisp/aws/aws.lisp +++ b/lisp/aws/aws.lisp @@ -191,7 +191,7 @@ (setf (age asg) (/ (- (get-universal-time) (local-time:timestamp-to-universal (local-time:parse-timestring (launch-time (first (instances asg)))))) 86400.0)) (error (e) (declare (ignore e)) - (setf (age asg) 999999)))) + (setf (age asg) -1)))) (sort asgs (lambda (x y) (> (age x) (age y)))))) (defmethod get-instance ((aws aws) instance-id) -- cgit v1.3