-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #604 from ibi-group/dev
Release
- Loading branch information
Showing
42 changed files
with
1,603 additions
and
773 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ import {Link} from 'react-router' | |
|
||
import {removeRetiredJob} from '../../manager/actions/status' | ||
import SidebarPopover from './SidebarPopover' | ||
import {getConfigProperty} from '../util/config' | ||
|
||
import type {ServerJob} from '../../types' | ||
import type {JobStatusState} from '../../types/reducers' | ||
|
@@ -136,6 +137,7 @@ class RetiredJob extends Component<{ | |
render () { | ||
const {job} = this.props | ||
const path = this._getPathToObject() | ||
const supportEmail = getConfigProperty('application.support_email') | ||
return ( | ||
<li className='job-container'> | ||
<div style={{ float: 'left' }}> | ||
|
@@ -189,12 +191,15 @@ class RetiredJob extends Component<{ | |
<Icon type='bug' /> Oh no! Looks like an error has occurred. | ||
</span> | ||
}> | ||
<p> | ||
To submit an error report email a screenshot of your browser | ||
window, the following text (current URL and error details), | ||
and a detailed description of the steps you followed | ||
to <a href='mailto:[email protected]'>[email protected]</a>. | ||
</p> | ||
{supportEmail | ||
? <p> | ||
To submit an error report email a screenshot of your browser | ||
window, the following text (current URL and error details), | ||
and a detailed description of the steps you followed | ||
to <a href={`mailto:${supportEmail}`}>{supportEmail}</a>. | ||
</p> | ||
: null | ||
} | ||
<p>{window.location.href}</p> | ||
<span style={{whiteSpace: 'pre', fontSize: 'xx-small'}}> | ||
{job.status.exceptionDetails} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.