File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ class CruiseMenu extends Component {
168
168
let output = files . map ( ( file , index ) => {
169
169
return (
170
170
< div className = 'pl-2' key = { `file_${ index } ` } >
171
- < a className = 'text-decoration-none' href = '#' onClick = { ( ) => handle_cruise_file_download ( file ) } >
171
+ < a className = 'text-decoration-none' href = '#' onClick = { ( ) => handle_cruise_file_download ( file , this . state . activeCruise . id ) } >
172
172
{ file }
173
173
</ a >
174
174
</ div >
@@ -181,7 +181,7 @@ class CruiseMenu extends Component {
181
181
let output = files . map ( ( file , index ) => {
182
182
return (
183
183
< div className = 'pl-2' key = { `file_${ index } ` } >
184
- < a className = 'text-decoration-none' href = '#' onClick = { ( ) => handle_lowering_file_download ( file ) } >
184
+ < a className = 'text-decoration-none' href = '#' onClick = { ( ) => handle_lowering_file_download ( file , this . state . activeLowering . id ) } >
185
185
{ file }
186
186
</ a >
187
187
</ div >
You can’t perform that action at this time.
0 commit comments