|
|
|
@ -156,6 +156,7 @@ class QueuedTaskRow extends Component {
|
|
|
|
|
status,
|
|
|
|
|
duration,
|
|
|
|
|
message,
|
|
|
|
|
clientUserAgent,
|
|
|
|
|
longDateFormat,
|
|
|
|
|
timeFormat,
|
|
|
|
|
onCancelPress
|
|
|
|
@ -191,7 +192,18 @@ class QueuedTaskRow extends Component {
|
|
|
|
|
</span>
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell>{commandName}</TableRowCell>
|
|
|
|
|
<TableRowCell>
|
|
|
|
|
<span className={styles.commandName}>
|
|
|
|
|
{commandName}
|
|
|
|
|
</span>
|
|
|
|
|
{
|
|
|
|
|
clientUserAgent ?
|
|
|
|
|
<span className={styles.userAgent} title="User-Agent provided by the app that called the API">
|
|
|
|
|
from: {clientUserAgent}
|
|
|
|
|
</span> :
|
|
|
|
|
null
|
|
|
|
|
}
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell
|
|
|
|
|
className={styles.queued}
|
|
|
|
@ -255,6 +267,7 @@ QueuedTaskRow.propTypes = {
|
|
|
|
|
status: PropTypes.string.isRequired,
|
|
|
|
|
duration: PropTypes.string,
|
|
|
|
|
message: PropTypes.string,
|
|
|
|
|
clientUserAgent: PropTypes.string,
|
|
|
|
|
showRelativeDates: PropTypes.bool.isRequired,
|
|
|
|
|
shortDateFormat: PropTypes.string.isRequired,
|
|
|
|
|
longDateFormat: PropTypes.string.isRequired,
|
|
|
|
|