Skip to content

Commit

Permalink
pass down stackscript id (#4668)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmckenna committed Mar 25, 2019
1 parent 1d48d88 commit 5c04179
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/linodes/LinodesCreate/SelectAppPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ const SelectAppPanel: React.SFC<CombinedProps> = props => {
{appInstances.map(eachApp => (
<SelectionCardWrapper
key={eachApp.id}
checked={eachApp.id === selectedStackScriptID}
checked={eachApp.stackscript_id === selectedStackScriptID}
label={eachApp.label}
availableImages={eachApp.images}
userDefinedFields={eachApp.user_defined_fields}
handleClick={handleClick}
disabled={disabled}
id={eachApp.id}
id={eachApp.stackscript_id}
iconUrl={eachApp.logo_url || ''}
/>
))}
Expand Down

0 comments on commit 5c04179

Please sign in to comment.