0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +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() {
return {
metadata : {
editId : null,
title : '',
description : '',
tags : '',
published : false,
authors : [],
systems : [],
renderer : 'legacy',
thumbnail : '',
showThumbnail : false
editId : null,
title : '',
description : '',
tags : '',
published : false,
authors : [],
systems : [],
renderer : 'legacy',
thumbnail : ''
},
onChange : ()=>{}
};