Skip to content
Snippets Groups Projects
Commit 314fbd40 authored by Tucker Chapman's avatar Tucker Chapman Committed by Fatih Acet
Browse files

Fix issue with list label text color

parent 6c913f2c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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();
});
Loading
Loading
---
title: Resolve issue where list labels did not have the correct text color on creation
merge_request: 26794
author: Tucker Chapman
type: fixed
Loading
Loading
@@ -45,6 +45,7 @@ describe('List model', () => {
id: _.random(10000),
title: 'test',
color: 'red',
text_color: 'white',
},
});
list.save();
Loading
Loading
@@ -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);
});
Loading
Loading
Loading
Loading
@@ -16,6 +16,7 @@ export const listObj = {
title: 'Testing',
color: 'red',
description: 'testing;',
textColor: 'white',
},
};
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment