Skip to content

Commit

Permalink
Rename expected time to time limit in project table column header (#4278
Browse files Browse the repository at this point in the history
)

* rename expected time to time limit in project table column header

* update changelog
  • Loading branch information
philippotto authored and fm3 committed Sep 5, 2019
1 parent f1fe3ca commit af3ff6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.md).

### Changed

- Renamed "Expected Time" to "Time Limit" in the project table. [#4278](https://github.com/scalableminds/webknossos/pull/4278)

### Fixed


Expand Down
2 changes: 1 addition & 1 deletion frontend/javascripts/admin/api_flow_types.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ type APIProjectTypeBase = {
+team: string,
+priority: number,
+paused: boolean,
+expectedTime: number,
+expectedTime: number, // Also known as "time limit"
+isBlacklistedFromReport: boolean,
};

Expand Down
2 changes: 1 addition & 1 deletion frontend/javascripts/admin/project/project_list_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class ProjectListView extends React.PureComponent<PropsWithRouter, State> {
sorter={Utils.compareBy(typeHint, project => project.numberOfOpenAssignments)}
/>
<Column
title="Expected Time"
title="Time Limit"
dataIndex="expectedTime"
key="expectedTime"
width={200}
Expand Down

0 comments on commit af3ff6b

Please sign in to comment.