Skip to content

Commit

Permalink
Fixed #294
Browse files Browse the repository at this point in the history
  • Loading branch information
AuthenticEshkinKot committed Dec 22, 2019
1 parent 9a75c02 commit 1c07dfe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 2.1.1 - 2019-12-22
### Fixed
- Empty status board because of upper case letters in status names

## 2.1.0 - 2019-12-12
### Added
- German translation
Expand Down
2 changes: 1 addition & 1 deletion Taskodrome/Taskodrome.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function register()
$this->description = plugin_lang_get("description");
$this->page = 'config_page';

$this->version = "2.1.0";
$this->version = "2.1.1";
$this->requires = array(
"MantisCore" => "2.0.0",
);
Expand Down
2 changes: 1 addition & 1 deletion Taskodrome/files/scripts/column_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function ColumnHandler(/** @type {Array.<String>} */headers, canvasWidth) {

this.getColumnIndex = function(name) {
for (var i = 0; i != headers.length; ++i) {
if (headers[i] == name) {
if (headers[i].toLowerCase() == name.toLowerCase()) {
return i;
}
}
Expand Down
2 changes: 1 addition & 1 deletion Taskodrome/files/scripts/data_source.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ var DataSource = (function() {
};

var StatusId = function(name) {
return m_statusIds[name];
return m_statusIds[name.toLowerCase()];
};

function getStatusColors() {
Expand Down

0 comments on commit 1c07dfe

Please sign in to comment.