Commit 0381dae6 authored by Bryce Johnson's avatar Bryce Johnson

Fix up static analysis issues.

parent bf122d94
......@@ -47,4 +47,5 @@
/*
* EE-only stylesheets
*/
@import "../../../ee/app/assets/stylesheets/**/*";
\ No newline at end of file
@import "../../../ee/app/assets/stylesheets/**/*";
......@@ -20,5 +20,5 @@
= link_to 'Read more', help_page_path('user/project/service_desk')
- if !service_desk_enabled
%div.turn-on-btn-container
.turn-on-btn-container
= link_to "Turn on Service Desk", edit_project_path(@project), class: 'btn btn-new btn-inverted'
......@@ -16,7 +16,7 @@
- support_bot_attrs = User.support_bot.to_json(only: [:id, :name, :username, :avatar_url])
%div{ class: "#{container_class} service-desk-issues", data: { support_bot: support_bot_attrs }}
%div{ class: "#{container_class} service-desk-issues", data: { support_bot: support_bot_attrs } }
.top-area
= render 'shared/issuable/nav', type: :issues
.nav-controls{ class: ("visible-xs" if show_new_nav?) }
......
require 'spec_helper'
describe 'Service Desk Issue Tracker', focus: true do
describe 'Service Desk Issue Tracker' do
let(:project) { create(:project, :private, service_desk_enabled: true) }
let(:user) { create(:user) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment