remove lint

This commit is contained in:
micael.bergeron 2017-08-15 12:18:02 -04:00
parent 643ed0f6a9
commit 4130552b42
3 changed files with 4 additions and 4 deletions

View File

@ -633,7 +633,7 @@ ul.notes {
}
&.note-role-special {
text-shadow: 0 0 15px white;
text-shadow: 0 0 15px $gl-text-color-inverted;
}
}

View File

@ -1,5 +1,5 @@
- if note.has_special_role?(Note::SpecialRole::FIRST_TIME_CONTRIBUTOR)
%span.note-role.note-role-special.has-tooltip{ title: _("This user hasn't yet contributed code to this project. Handle with care.")}
%span.note-role.note-role-special.has-tooltip{ title: _("This user hasn't yet contributed code to this project. Handle with care.") }
= issuable_first_contribution_icon
- if access = note_max_access_for_user(note)
%span.note-role.note-role-access= Gitlab::Access.human_access(access)

View File

@ -483,8 +483,8 @@ describe Issuable do
describe '#first_contribution?' do
let(:group) { create(:group) }
let(:project) { create(:empty_project, namespace: group) }
let(:other_project) { create(:empty_project) }
let(:project) { create(:project, namespace: group) }
let(:other_project) { create(:project) }
let(:owner) { create(:owner) }
let(:master) { create(:user) }
let(:reporter) { create(:user) }