diff options
-rw-r--r-- | app/assets/javascripts/boards/components/board_blank_state.js.es6 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/boards/components/board_blank_state.js.es6 b/app/assets/javascripts/boards/components/board_blank_state.js.es6 index a9d94660fa0..c50051cdf82 100644 --- a/app/assets/javascripts/boards/components/board_blank_state.js.es6 +++ b/app/assets/javascripts/boards/components/board_blank_state.js.es6 @@ -3,10 +3,10 @@ data: function () { return { predefinedLabels: [ - new Label({ title: 'Development', color: '#5CB85C' }), - new Label({ title: 'Testing', color: '#F0AD4E' }), - new Label({ title: 'Production', color: '#FF5F00' }), - new Label({ title: 'Ready', color: '#FF0000' }) + new ListLabel({ title: 'Development', color: '#5CB85C' }), + new ListLabel({ title: 'Testing', color: '#F0AD4E' }), + new ListLabel({ title: 'Production', color: '#FF5F00' }), + new ListLabel({ title: 'Ready', color: '#FF0000' }) ] } }, |