Merge branch '47584-label-text-color' into 'master'

Fix issue with list label text color

Closes #47584

See merge request gitlab-org/gitlab-ce!26794
This commit is contained in:
Fatih Acet 2019-04-23 13:13:41 +00:00
commit 3796bbd1c8
4 changed files with 10 additions and 0 deletions

View file

@ -90,6 +90,7 @@ class List {
this.id = data.id;
this.type = data.list_type;
this.position = data.position;
this.label = data.label;
return this.getIssues();
});

View file

@ -0,0 +1,5 @@
---
title: Resolve issue where list labels did not have the correct text color on creation
merge_request: 26794
author: Tucker Chapman
type: fixed

View file

@ -45,6 +45,7 @@ describe('List model', () => {
id: _.random(10000),
title: 'test',
color: 'red',
text_color: 'white',
},
});
list.save();
@ -53,6 +54,8 @@ describe('List model', () => {
expect(list.id).toBe(listObj.id);
expect(list.type).toBe('label');
expect(list.position).toBe(0);
expect(list.label.color).toBe('red');
expect(list.label.textColor).toBe('white');
done();
}, 0);
});

View file

@ -16,6 +16,7 @@ export const listObj = {
title: 'Testing',
color: 'red',
description: 'testing;',
textColor: 'white',
},
};