Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
get: function () {
return reactstrap.ModalFooter;
}
});
HeaderContainer: CardHeader,
BodyContainer: CardBody,
FooterContainer: CardFooter
});
Object.assign(Cell.componentTypes, {
Container: _Cell,
HeaderContainer: CellHeader,
BodyContainer: CellBody
});
Object.assign(Modal.componentTypes, {
Container: styled(rs.Modal)`${props => props.theme.Modal.Container}`,
HeaderContainer: styled(rs.ModalHeader)`${props => props.theme.Modal.HeaderContainer}`,
BodyContainer: styled(rs.ModalBody)`${props => props.theme.Modal.BodyContainer}`,
FooterContainer: styled(rs.ModalFooter)`${props => props.theme.Modal.FooterContainer}`
});
export { Card, CardImage, Cell, Collapsible, Field, Modal, Tab, TabItem };
React.createElement("tr", null,
React.createElement("th", null, "Blocked Time"),
React.createElement("th", null, "Blocked Count"),
React.createElement("th", null, "Waited Time"),
React.createElement("th", null, "Waited Count"),
React.createElement("th", null, "Lock Name"))),
React.createElement("tbody", null,
React.createElement("tr", { key: threadDumpInfo.lockName },
React.createElement("td", null, threadDumpInfo.blockedTime),
React.createElement("td", null, threadDumpInfo.blockedCount),
React.createElement("td", null, threadDumpInfo.waitedTime),
React.createElement("td", null, threadDumpInfo.waitedCount),
React.createElement("td", { className: "thread-dump-modal-lock", title: threadDumpInfo.lockName },
React.createElement("code", null, threadDumpInfo.lockName)))))))); })
: null)),
React.createElement(reactstrap_1.ModalFooter, null,
React.createElement(reactstrap_1.Button, { color: "primary", onClick: handleClose }, "Close"))));
};
return ThreadsModal;