Skip to content

Commit

Permalink
New: Interactive search modal size
Browse files Browse the repository at this point in the history
(cherry picked from commit 1f619e27f1e8905bc96ce54c483171469d204650)

Closes #3399
  • Loading branch information
markus101 authored and mynameisbogdan committed Aug 1, 2023
1 parent d7b91b7 commit e8d165a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 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) {
Expand All @@ -14,6 +15,7 @@ function AlbumInteractiveSearchModal(props) {
return (
<Modal
isOpen={isOpen}
size={sizes.EXTRA_LARGE}
closeOnBackgroundClick={false}
onModalClose={onModalClose}
>
Expand Down
2 changes: 2 additions & 0 deletions 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) {
Expand All @@ -13,6 +14,7 @@ function ArtistInteractiveSearchModal(props) {
return (
<Modal
isOpen={isOpen}
size={sizes.EXTRA_LARGE}
closeOnBackgroundClick={false}
onModalClose={onModalClose}
>
Expand Down

0 comments on commit e8d165a

Please sign in to comment.