1
0
Fork 0
forked from gitea/nas

Fix dimensions of preview cards, fix crash in web UI, fix warning (#9133)

This commit is contained in:
Eugen Rochko 2018-10-29 04:42:07 +01:00 committed by GitHub
parent 26fe37c414
commit 9c38c5daa3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 86 deletions

View file

@ -1,8 +0,0 @@
import { connect } from 'react-redux';
import Card from '../components/card';
const mapStateToProps = (state, { statusId }) => ({
card: state.getIn(['statuses', statusId, 'card'], null),
});
export default connect(mapStateToProps)(Card);