Skip to content

Commit c131489

Browse files
Merge pull request #295 from AuthenticEshkinKot/master
Fixed #294
2 parents 9d83db4 + 1c07dfe commit c131489

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 2.1.1 - 2019-12-22
8+
### Fixed
9+
- Empty status board because of upper case letters in status names
10+
711
## 2.1.0 - 2019-12-12
812
### Added
913
- German translation

Taskodrome/Taskodrome.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function register()
1111
$this->description = plugin_lang_get("description");
1212
$this->page = 'config_page';
1313

14-
$this->version = "2.1.0";
14+
$this->version = "2.1.1";
1515
$this->requires = array(
1616
"MantisCore" => "2.0.0",
1717
);

Taskodrome/files/scripts/column_handler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function ColumnHandler(/** @type {Array.<String>} */headers, canvasWidth) {
77

88
this.getColumnIndex = function(name) {
99
for (var i = 0; i != headers.length; ++i) {
10-
if (headers[i] == name) {
10+
if (headers[i].toLowerCase() == name.toLowerCase()) {
1111
return i;
1212
}
1313
}

Taskodrome/files/scripts/data_source.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ var DataSource = (function() {
134134
};
135135

136136
var StatusId = function(name) {
137-
return m_statusIds[name];
137+
return m_statusIds[name.toLowerCase()];
138138
};
139139

140140
function getStatusColors() {

0 commit comments

Comments
 (0)