Sha256: c668d3cb636c13b5b50098c52c7e71a0991ac3ce170153b74cf733cfe893b926
Contents?: true
Size: 1.67 KB
Versions: 86
Compression:
Stored size: 1.67 KB
Contents
// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`TargetingHosts renders 1`] = ` <LoadingState additionalClasses="" loading={false} loadingText="Loading" size="lg" timeout={300} > <div> <table className="table table-bordered table-striped table-hover" > <thead> <tr> <th> Host </th> <th> Status </th> <th> Actions </th> </tr> </thead> <tbody> <HostItem actions={Array []} key="host" link="/link" name="host" status="success" /> <HostItem actions={Array []} key="host2" link="/link2" name="host2" status="success" /> </tbody> </table> </div> </LoadingState> `; exports[`TargetingHosts renders with error 1`] = ` <Alert className="" onDismiss={null} type="error" > There was an error while updating the status, try refreshing the page. </Alert> `; exports[`TargetingHosts renders with loading 1`] = ` <LoadingState additionalClasses="" loading={true} loadingText="Loading" size="lg" timeout={300} > <div> <table className="table table-bordered table-striped table-hover" > <thead> <tr> <th> Host </th> <th> Status </th> <th> Actions </th> </tr> </thead> <tbody> <tr> <td colSpan="3" > No hosts found. </td> </tr> </tbody> </table> </div> </LoadingState> `;
Version data entries
86 entries across 86 versions & 1 rubygems