{JSON.stringify(options, null, 2)}39 |
Awaiting data...
11 | } 12 | returnNo items exist {search ? `for “${search}”.` : ''}
13 | } 14 | 15 | export default Empty 16 | -------------------------------------------------------------------------------- /src/components/error-message.tsx: -------------------------------------------------------------------------------- 1 | /** 2 | * ErrorMessage 3 | * Displays error information should an endpoint fail to respond 4 | */ 5 | 6 | import * as React from 'react' 7 | 8 | interface Props { 9 | error?: Error | string 10 | } 11 | 12 | const ErrorMessage: React.SFC{trimmed}
: null 18 | } 19 | 20 | getCaption(caption: string) { 21 | let trimmed = caption ? caption.trim() : '' 22 | 23 | return trimmed.length ?{trimmed}
: null 24 | } 25 | 26 | render() { 27 | let { caption = '', name = '', url } = this.props.item 28 | 29 | return ( 30 |
134 | Use this column to select items
135 |
136 | |
145 |
---|
It may have been deleted.
12 |