Bläddra i källkod

Update allocation.js

Signed-off-by: Stephen Atwell <78044713+stephenatwell@users.noreply.github.com>
Stephen Atwell 3 år sedan
förälder
incheckning
e6bae6f03d
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. 3 3
      ui/src/services/allocation.js

+ 3 - 3
ui/src/services/allocation.js

@@ -2,11 +2,11 @@ import axios from 'axios';
 
 
 
 
 func getenv(key, fallback string) string {
 func getenv(key, fallback string) string {
-    value := os.Getenv(key)
+    value := os.Getenv(key);
     if len(value) == 0 {
     if len(value) == 0 {
-        return fallback
+        return fallback;
     }
     }
-    return value
+    return value;
 }
 }
 
 
 class AllocationService {
 class AllocationService {