jusrhee 5 лет назад
Родитель
Сommit
9bb32f15af

+ 8 - 0
dashboard/src/main/home/cluster-dashboard/expanded-chart/ExpandedChart.tsx

@@ -586,6 +586,14 @@ const CloseOverlay = styled.div`
   left: 0;
   width: 100%;
   height: 100%;
+  background: #202227;
+  animation: fadeIn 0.2s 0s;
+  opacity: 0;
+  animation-fill-mode: forwards;
+  @keyframes fadeIn {
+    from { opacity: 0 }
+    to { opacity: 1 }
+  }
 `;
 
 const HeaderWrapper = styled.div`

+ 1 - 1
internal/config/redis.go

@@ -3,5 +3,5 @@ package config
 // RedisConf is the redis config required for the provisioner container
 type RedisConf struct {
 	Host string `env:"REDIS_HOST,default=redis"`
-	Port string `env:"REDIS_PORT,default=5432"`
+	Port string `env:"REDIS_PORT,default=6379"`
 }