mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f504b682f3 | ||
|
|
f0719f5ea4 |
@@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## v1.0.3 - 2017-04-18
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix: sort by column no longer working.
|
||||
|
||||
## v1.0.2 - 2017-04-18
|
||||
|
||||
### Fixed
|
||||
|
||||
@@ -41,9 +41,9 @@ function DynamicTable($sanitize) {
|
||||
}
|
||||
|
||||
if (this.orderByField) {
|
||||
this.allRows = sortBy(this.allRows, this.orderByField.name);
|
||||
this.rows = sortBy(this.rows, this.orderByField.name);
|
||||
if (this.orderByReverse) {
|
||||
this.allRows = this.allRows.reverse();
|
||||
this.rows = this.rows.reverse();
|
||||
}
|
||||
this.pageChanged();
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "redash-client",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"description": "The frontend part of Redash.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -16,7 +16,7 @@ from redash.query_runner import import_query_runners
|
||||
from redash.destinations import import_destinations
|
||||
|
||||
|
||||
__version__ = '1.0.2'
|
||||
__version__ = '1.0.3'
|
||||
|
||||
|
||||
def setup_logging():
|
||||
|
||||
Reference in New Issue
Block a user