Commit 46d9cf15 authored by Phil Hughes's avatar Phil Hughes

Merge branch '327553-jira-issue-label-colors-should-have-higher-contrast' into 'master'

Update label color on Jira issues pages

See merge request gitlab-org/gitlab!59226
parents 50fd1ac6 a1c7062a
......@@ -200,7 +200,7 @@ export default {
@filter="handleFilterIssues"
>
<template #nav-actions>
<gl-button :href="issueCreateUrl" target="_blank"
<gl-button :href="issueCreateUrl" target="_blank" class="gl-my-5"
>{{ s__('Integrations|Create new issue in Jira') }}<gl-icon name="external-link"
/></gl-button>
</template>
......
......@@ -34,8 +34,8 @@ module Integrations
{
title: name,
name: name,
color: '#EBECF0',
text_color: '#283856'
color: '#0052CC',
text_color: '#FFFFFF'
}
end
end
......
---
title: Update label color on Jira issues pages
merge_request: 59226
author:
type: changed
......@@ -18,8 +18,8 @@ export const mockJiraIssue1 = {
labels: [
{
name: 'backend',
color: '#EBECF0',
text_color: '#283856',
color: '#0052CC',
text_color: '#FFFFFF',
},
],
author: {
......
......@@ -20,8 +20,8 @@ export const mockJiraIssue = {
{
title: 'In Progress',
description: 'Work that is still in progress',
color: '#EBECF0',
text_color: '#283856',
color: '#0052CC',
text_color: '#FFFFFF',
},
],
references: {
......
......@@ -88,8 +88,8 @@ RSpec.describe Integrations::Jira::IssueDetailEntity do
{
title: 'backend',
name: 'backend',
color: '#EBECF0',
text_color: '#283856'
color: '#0052CC',
text_color: '#FFFFFF'
}
],
author: hash_including(
......
......@@ -55,8 +55,8 @@ RSpec.describe Integrations::Jira::IssueEntity do
{
title: 'backend',
name: 'backend',
color: '#EBECF0',
text_color: '#283856'
color: '#0052CC',
text_color: '#FFFFFF'
}
],
author: hash_including(
......
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