From e8d165aa5b0d65de5676dc21e04f1c21bee88aaa Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 12 Mar 2023 23:58:37 -0700 Subject: [PATCH] New: Interactive search modal size (cherry picked from commit 1f619e27f1e8905bc96ce54c483171469d204650) Closes #3399 --- frontend/src/Album/Search/AlbumInteractiveSearchModal.js | 2 ++ frontend/src/Artist/Search/ArtistInteractiveSearchModal.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/frontend/src/Album/Search/AlbumInteractiveSearchModal.js b/frontend/src/Album/Search/AlbumInteractiveSearchModal.js index 52e825babc..5049658a0d 100644 --- a/frontend/src/Album/Search/AlbumInteractiveSearchModal.js +++ b/frontend/src/Album/Search/AlbumInteractiveSearchModal.js @@ -1,6 +1,7 @@ import PropTypes from 'prop-types'; import React from 'react'; import Modal from 'Components/Modal/Modal'; +import { sizes } from 'Helpers/Props'; import AlbumInteractiveSearchModalContent from './AlbumInteractiveSearchModalContent'; function AlbumInteractiveSearchModal(props) { @@ -14,6 +15,7 @@ function AlbumInteractiveSearchModal(props) { return ( diff --git a/frontend/src/Artist/Search/ArtistInteractiveSearchModal.js b/frontend/src/Artist/Search/ArtistInteractiveSearchModal.js index 0da3661a86..d7feee98d2 100644 --- a/frontend/src/Artist/Search/ArtistInteractiveSearchModal.js +++ b/frontend/src/Artist/Search/ArtistInteractiveSearchModal.js @@ -1,6 +1,7 @@ import PropTypes from 'prop-types'; import React from 'react'; import Modal from 'Components/Modal/Modal'; +import { sizes } from 'Helpers/Props'; import ArtistInteractiveSearchModalContent from './ArtistInteractiveSearchModalContent'; function ArtistInteractiveSearchModal(props) { @@ -13,6 +14,7 @@ function ArtistInteractiveSearchModal(props) { return (