diff --git a/src/App.jsx b/src/App.jsx
index fa096b1..fe1cbd9 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -60,7 +60,11 @@ const AppContent = () => {
theme={themeConfig}
renderEmpty={() => (
-
+
)}
>
diff --git a/src/components/Dashboard/common/MissingPlaceholder.jsx b/src/components/Dashboard/common/MissingPlaceholder.jsx
index 6389195..c004f25 100644
--- a/src/components/Dashboard/common/MissingPlaceholder.jsx
+++ b/src/components/Dashboard/common/MissingPlaceholder.jsx
@@ -4,13 +4,22 @@ import PropTypes from 'prop-types'
const { Text } = Typography
-const MissingPlaceholder = ({ message, hasBackground = true }) => {
+const MissingPlaceholder = ({
+ message,
+ hasBackground = true,
+ hasBorder = true
+}) => {
return (
{
MissingPlaceholder.propTypes = {
message: PropTypes.string.isRequired,
- hasBackground: PropTypes.bool
+ hasBackground: PropTypes.bool,
+ hasBorder: PropTypes.bool
}
export default MissingPlaceholder