mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-29 20:30:39 +00:00 
			
		
		
		
	Catch potential missing element (#7059)
This commit is contained in:
		| @@ -269,7 +269,7 @@ class FileManagementFormView(MultiStepFormView): | |||||||
|                 for idx, item in row_data.items(): |                 for idx, item in row_data.items(): | ||||||
|                     column_data = { |                     column_data = { | ||||||
|                         'name': self.column_names[idx], |                         'name': self.column_names[idx], | ||||||
|                         'guess': self.column_selections[idx], |                         'guess': self.column_selections.get(idx, ''), | ||||||
|                     } |                     } | ||||||
|  |  | ||||||
|                     cell_data = {'cell': item, 'idx': idx, 'column': column_data} |                     cell_data = {'cell': item, 'idx': idx, 'column': column_data} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user