Commit cf91b76a authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'change-boards-selector-titles' into 'master'

Changed titles in board switcher

See merge request !1390
parents 10e1c791 43134857
...@@ -57,8 +57,10 @@ require('./board_new_form'); ...@@ -57,8 +57,10 @@ require('./board_new_form');
return this.boards.length > 1; return this.boards.length > 1;
}, },
title() { title() {
if (this.currentPage === 'edit' || this.currentPage === 'milestone') { if (this.currentPage === 'edit') {
return 'Edit board'; return 'Edit board name';
} else if (this.currentPage === 'milestone') {
return 'Edit board milestone';
} else if (this.currentPage === 'new') { } else if (this.currentPage === 'new') {
return 'Create new board'; return 'Create new board';
} else if (this.currentPage === 'delete') { } else if (this.currentPage === 'delete') {
......
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