diff options
author | Phil Hughes <me@iamphill.com> | 2016-08-10 21:41:30 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-08-17 17:17:39 +0100 |
commit | 4e83744da294d38cc933662218a7ffdde429d7e3 (patch) | |
tree | a4602ea420c9c5af90bc6eaea89a8d6650b84719 | |
parent | 63a4daa555477432663a8dceaf012e2dcd4ca7fa (diff) | |
download | gitlab-ce-4e83744da294d38cc933662218a7ffdde429d7e3.tar.gz |
Fixed error with class not existing
-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' }) ] } }, |