Skip to content
Snippets Groups Projects
Commit 1e6861db authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- group view now shows the id

- release date fixed typing
parent 94ef50df
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ class SingleGroupSite extends React.Component<Props & RouteComponentProps<Matche
<h1 className="clear-margin">
{
this.props.group &&
this.props.group.displayName
this.props.group.displayName + ` (id: ${this.props.group.id})`
}
</h1>
......
......@@ -13,7 +13,7 @@ import Logger from './helpers/logger'
* y - breaking changes / new features
* z - fixes, small changes
*/
export const versionString = '2.19.4'
export const versionString = '2.19.5'
export const supportMail = 'yapex@informatik.uni-halle.de'
......
......@@ -76,7 +76,7 @@ const reMsAjax = /^\/Date\((d|-|.*)\)[\/|\\]$/
const reWithoutMs = /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})Z?$/
/**
* same as dateTimeReviver but converts the time to local time (was gtm +2)
* same as dateTimeReviver but converts the (server) time to local time (add utc offset)
* @param key
* @param value
* @returns {any}
......
......@@ -195,9 +195,9 @@ export interface ExerciseReleaseForBackend extends ExerciseReleaseBase {
/**
* the automatic starting date time (if the release type is automatic)
*/
readonly automaticStartAt?: Date
readonly automaticStartAt?: Date | null
/**
* the automatic ending date time (if the release type is automatic)
*/
readonly automaticEndAt?: Date
readonly automaticEndAt?: Date | null
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment