mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
iconSrc -> iconURI to match CategoryInfo format
This commit is contained in:
parent
b317c12e79
commit
b40f939566
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ const ExtensionChip = props => (
|
|||
<div className={classNames('extension-chip', {'has-status': props.hasStatus})}>
|
||||
<img
|
||||
className="extension-icon"
|
||||
src={props.iconSrc}
|
||||
src={props.iconURI}
|
||||
/>
|
||||
<div className="extension-content">
|
||||
<span>{props.extensionName}</span>
|
||||
|
@ -23,7 +23,7 @@ const ExtensionChip = props => (
|
|||
ExtensionChip.propTypes = {
|
||||
extensionName: PropTypes.string,
|
||||
hasStatus: PropTypes.boolean,
|
||||
iconSrc: PropTypes.string
|
||||
iconURI: PropTypes.string
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue