ywana-core8 0.0.904 → 0.0.905
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -173,11 +173,11 @@ export const FileGridItem = (props) => {
|
|
173
173
|
|
174
174
|
const style = selected ? 'file-item--selected' : ''
|
175
175
|
return (
|
176
|
-
<div className={`file-item ${style}`}
|
177
|
-
<picture>
|
176
|
+
<div className={`file-item ${style}`}>
|
177
|
+
<picture onClick={select}>
|
178
178
|
<img src={src}></img>
|
179
179
|
</picture>
|
180
|
-
<main>
|
180
|
+
<main onClick={select}>
|
181
181
|
<div className='file-item-title'>{title}</div>
|
182
182
|
<div className='file-item-subtitle'>{subtitle}</div>
|
183
183
|
</main>
|