diff --git a/admin/src/components/ConfigDiff/index.js b/admin/src/components/ConfigDiff/index.js index 6bd0db7..d109ff0 100644 --- a/admin/src/components/ConfigDiff/index.js +++ b/admin/src/components/ConfigDiff/index.js @@ -3,6 +3,8 @@ import ReactDiffViewer, { DiffMethod } from 'react-diff-viewer'; import { ModalLayout, ModalBody, ModalHeader } from '@strapi/design-system/ModalLayout'; import { ButtonText } from '@strapi/design-system/Text'; +import { Grid, GridItem } from '@strapi/design-system/Grid'; +import { Typography } from '@strapi/design-system/Typography'; const ConfigDiff = ({ isOpen, onClose, oldValue, newValue, configName }) => { if (!isOpen) { @@ -20,14 +22,20 @@ const ConfigDiff = ({ isOpen, onClose, oldValue, newValue, configName }) => { -
- -
+ + + Sync directory + + + Database + + +
);