diff --git a/packages/core/admin/admin/src/content-manager/components/DynamicTable/CellContent/RelationMultiple/tests/__snapshots__/index.test.js.snap b/packages/core/admin/admin/src/content-manager/components/DynamicTable/CellContent/RelationMultiple/tests/__snapshots__/index.test.js.snap index f1a1b1608d..35c51cbf08 100644 --- a/packages/core/admin/admin/src/content-manager/components/DynamicTable/CellContent/RelationMultiple/tests/__snapshots__/index.test.js.snap +++ b/packages/core/admin/admin/src/content-manager/components/DynamicTable/CellContent/RelationMultiple/tests/__snapshots__/index.test.js.snap @@ -207,6 +207,11 @@ exports[`DynamicTabe / Cellcontent / RelationMultiple renders and matches the sn fill: #8e8ea9; } +.c9 { + border-radius: 4px; + height: 1.5rem; +} + .c12 { display: -webkit-box; display: -webkit-flex; @@ -227,11 +232,6 @@ exports[`DynamicTabe / Cellcontent / RelationMultiple renders and matches the sn padding: 4px 12px; } -.c9 { - border-radius: 4px; - height: 1.5rem; -} -
This is a super description
diff --git a/packages/core/upload/admin/src/components/AssetDialog/BrowseStep/tests/__snapshots__/index.test.js.snap b/packages/core/upload/admin/src/components/AssetDialog/BrowseStep/tests/__snapshots__/index.test.js.snap index c6667114a9..92425c01b1 100644 --- a/packages/core/upload/admin/src/components/AssetDialog/BrowseStep/tests/__snapshots__/index.test.js.snap +++ b/packages/core/upload/admin/src/components/AssetDialog/BrowseStep/tests/__snapshots__/index.test.js.snap @@ -568,22 +568,6 @@ exports[`BrowseStep renders and match snapshot 1`] = ` width: 100%; } -.c9 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c9 svg { - height: 4px; - width: 6px; -} - .c27 { display: grid; grid-template-columns: repeat(12,1fr); @@ -620,6 +604,22 @@ exports[`BrowseStep renders and match snapshot 1`] = ` color: #4a4a6a; } +.c9 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.c9 svg { + height: 4px; + width: 6px; +} + .c30 { height: 100%; left: 0; diff --git a/packages/core/upload/admin/src/components/FilterPopover/FilterValueInput.js b/packages/core/upload/admin/src/components/FilterPopover/FilterValueInput.js index 199c0c6efd..dbd11ebb80 100644 --- a/packages/core/upload/admin/src/components/FilterPopover/FilterValueInput.js +++ b/packages/core/upload/admin/src/components/FilterPopover/FilterValueInput.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { DateTimePicker } from '@strapi/design-system/DateTimePicker'; -import { Select, Option } from '@strapi/design-system/Select'; +import { DateTimePicker, Select } from '@strapi/design-system'; +import { Option } from '@strapi/design-system/Select'; import { useIntl } from 'react-intl'; const FilterValueInput = ({ label, onChange, options, type, value }) => {