mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Updates
This commit is contained in:
		| @@ -140,7 +140,8 @@ class DownloadBinaryRequestHandler(tornado.web.RequestHandler): | ||||
|  | ||||
| class MainRequestHandler(tornado.web.RequestHandler): | ||||
|     def get(self): | ||||
|         files = sorted([f for f in os.listdir(CONFIG_DIR) if f.endswith('.yaml')]) | ||||
|         files = sorted([f for f in os.listdir(CONFIG_DIR) if f.endswith('.yaml') and | ||||
|                         not f.startswith('.')]) | ||||
|         full_path_files = [os.path.join(CONFIG_DIR, f) for f in files] | ||||
|         self.render("templates/index.html", files=files, full_path_files=full_path_files, | ||||
|                     version=const.__version__) | ||||
|   | ||||
| @@ -68,7 +68,8 @@ | ||||
|       overflow: auto; | ||||
|       line-height: 1.45; | ||||
|       border-radius: 3px; | ||||
|       word-wrap: normal; | ||||
|       white-space: pre-wrap; | ||||
|       overflow-wrap: break-word; | ||||
|       color: #DDD; | ||||
|     } | ||||
|  | ||||
| @@ -125,10 +126,6 @@ | ||||
|       height: 80% !important; | ||||
|     } | ||||
|  | ||||
|     .log { | ||||
|  | ||||
|     } | ||||
|  | ||||
|     .page-footer { | ||||
|       padding-top: 0; | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user