var { status, ...other } = this.props;
+ console.log(status, this.props);
+
if (status.get('reblog') !== null) {
let displayName = status.getIn(['account', 'display_name']);
if (reblogOfId !== null) {
const otherReblogs = state.get('statuses').filter(item => item.get('reblog') === reblogOfId).map((_, itemId) => itemId);
- list = list.filterNot(itemId => itemId === reblogOfId || otherReblogs.includes(itemId));
+ list = list.filterNot(itemId => (itemId === reblogOfId || otherReblogs.includes(itemId)));
}
return list.unshift(status.get('id'));
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
# Compress JavaScripts and CSS.
- # config.assets.js_compressor = :uglifier
+ config.assets.js_compressor = Uglifier.new(mangle: false, output: { comments: :all })
# config.assets.css_compressor = :sass
# Do not fallback to assets pipeline if a precompiled asset is missed.