pramod_Task-#357 : Added Admin Update and Delete Functionality in Manage Buckets Modal #155

Merged
pramod.mahajan merged 32 commits from pramod_Task-#357 into Feature_Directory 2025-05-28 07:03:52 +00:00
Showing only changes of commit 45e88c07a9 - Show all commits

View File

@ -38,12 +38,13 @@ const InputSuggestions = ({
/> />
{showSuggestions && filteredList.length > 0 && ( {showSuggestions && filteredList.length > 0 && (
<ul <ul
className="list-group shadow-sm position-absolute w-100 bg-white border rounded zindex-tooltip" className="list-group shadow-sm position-absolute w-100 bg-white border zindex-tooltip"
style={{ style={{
maxHeight: "180px", maxHeight: "180px",
overflowY: "auto", overflowY: "auto",
marginTop: "2px", marginTop: "2px",
zIndex: 1000, zIndex: 1000,
borderRadius:"0px"
}} }}
> >
{filteredList.map((org) => ( {filteredList.map((org) => (
@ -52,7 +53,7 @@ const InputSuggestions = ({
className="list-group-item list-group-item-action border-none " className="list-group-item list-group-item-action border-none "
style={{ style={{
cursor: "pointer", cursor: "pointer",
padding: "2px 12px", padding: "5px 12px",
fontSize: "14px", fontSize: "14px",
transition: "background-color 0.2s", transition: "background-color 0.2s",
}} }}