ui: automatically add 'localhost' as nodename for all panels
this will make refactoring easier for panels that are reused from pve (where we always have a hostname) Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
		
				
					committed by
					
						 Dietmar Maurer
						Dietmar Maurer
					
				
			
			
				
	
			
			
			
						parent
						
							90779237ae
						
					
				
				
					commit
					573bcd9a92
				
			| @ -72,10 +72,15 @@ Ext.define('PBS.MainView', { | ||||
| 		let datastore = PBS.Utils.getDataStoreFromPath(path); | ||||
| 		obj = contentpanel.add({ | ||||
| 		    xtype: 'pbsDataStorePanel', | ||||
| 		    nodename: 'localhost', | ||||
| 		    datastore, | ||||
| 		}); | ||||
| 	    } else { | ||||
| 		obj = contentpanel.add({ xtype: path, border: false }); | ||||
| 		obj = contentpanel.add({ | ||||
| 		    xtype: path, | ||||
| 		    nodename: 'localhost', | ||||
| 		    border: false | ||||
| 		}); | ||||
| 	    } | ||||
|  | ||||
| 	    var treelist = me.lookupReference('navtree'); | ||||
|  | ||||
		Reference in New Issue
	
	Block a user