0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-31 08:42:40 +00:00

Remove showThumbnail from MetadataEditor props

This commit is contained in:
G.Ambatte
2021-10-30 18:14:21 +13:00
parent 4714074b12
commit bade8ad32f

View File

@@ -12,16 +12,15 @@ const MetadataEditor = createClass({
getDefaultProps : function() { getDefaultProps : function() {
return { return {
metadata : { metadata : {
editId : null, editId : null,
title : '', title : '',
description : '', description : '',
tags : '', tags : '',
published : false, published : false,
authors : [], authors : [],
systems : [], systems : [],
renderer : 'legacy', renderer : 'legacy',
thumbnail : '', thumbnail : ''
showThumbnail : false
}, },
onChange : ()=>{} onChange : ()=>{}
}; };