Linting fixes
This commit is contained in:
parent
938175d5e8
commit
22fc82dfee
3 changed files with 6 additions and 4 deletions
|
@ -96,11 +96,11 @@ class Reaction extends ImmutablePureComponent {
|
||||||
} else {
|
} else {
|
||||||
addReaction(statusId, reaction.get('name'));
|
addReaction(statusId, reaction.get('name'));
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
handleMouseEnter = () => this.setState({ hovered: true })
|
handleMouseEnter = () => this.setState({ hovered: true });
|
||||||
|
|
||||||
handleMouseLeave = () => this.setState({ hovered: false })
|
handleMouseLeave = () => this.setState({ hovered: false });
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { reaction } = this.props;
|
const { reaction } = this.props;
|
||||||
|
|
|
@ -289,7 +289,9 @@ class Status < ApplicationRecord
|
||||||
if account.nil?
|
if account.nil?
|
||||||
scope.select('name, custom_emoji_id, count(*) as count, false as me')
|
scope.select('name, custom_emoji_id, count(*) as count, false as me')
|
||||||
else
|
else
|
||||||
|
# rubocop:disable Layout/LineLength
|
||||||
scope.select("name, custom_emoji_id, count(*) as count, exists(select 1 from status_reactions r where r.account_id = #{account.id} and r.status_id = status_reactions.status_id and r.name = status_reactions.name and (r.custom_emoji_id = status_reactions.custom_emoji_id or r.custom_emoji_id is null and status_reactions.custom_emoji_id is null)) as me")
|
scope.select("name, custom_emoji_id, count(*) as count, exists(select 1 from status_reactions r where r.account_id = #{account.id} and r.status_id = status_reactions.status_id and r.name = status_reactions.name and (r.custom_emoji_id = status_reactions.custom_emoji_id or r.custom_emoji_id is null and status_reactions.custom_emoji_id is null)) as me")
|
||||||
|
# rubocop:enable Layout/LineLength
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
= ff.input :'web.use_system_emoji_font', wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_system_emoji_font'), glitch_only: true
|
= ff.input :'web.use_system_emoji_font', wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_system_emoji_font'), glitch_only: true
|
||||||
|
|
||||||
.fields-group.fields-row__column.fields-row__column-6
|
.fields-group.fields-row__column.fields-row__column-6
|
||||||
= ff.input :'visible_reactions', wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_visible_reactions'), input_html: { type: 'number', min: '0', data: { default: '6' } }, hint: false
|
= ff.input :visible_reactions, wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_visible_reactions'), input_html: { type: 'number', min: '0', data: { default: '6' } }, hint: false
|
||||||
|
|
||||||
%h4= t 'appearance.discovery'
|
%h4= t 'appearance.discovery'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue