mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Catch potential missing element (#7059)
This commit is contained in:
parent
0ba7f7ece5
commit
c823f1420a
@ -269,7 +269,7 @@ class FileManagementFormView(MultiStepFormView):
|
||||
for idx, item in row_data.items():
|
||||
column_data = {
|
||||
'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}
|
||||
|
Loading…
Reference in New Issue
Block a user