Skip to content
Snippets Groups Projects
Commit 6611e3a2 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

More debugging

parent 4baca34a
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,8 @@ const Status = React.createClass({
var { status, ...other } = this.props;
console.log(status, this.props);
if (status.get('reblog') !== null) {
let displayName = status.getIn(['account', 'display_name']);
......
......@@ -129,7 +129,7 @@ function updateTimeline(state, timeline, status) {
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'));
......
......@@ -19,7 +19,7 @@ Rails.application.configure do
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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment