File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/pages/roles&permissions Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1104,20 +1104,18 @@ const handleInputChange = (e) => {
11041104
11051105 return (
11061106 < div key = { index } >
1107- { /* Entity Header with Dropdown Icon */ }
11081107 < div className = "p-3 flex justify-between items-center" >
1109- < h2 className = "text-black text-lg font-semibold" >
1108+ < h2 className = "text-white text-lg font-semibold" >
11101109 { permission . entity }
11111110 </ h2 >
11121111 < BsIcons . BsChevronDown
1113- className = { `cursor-pointer text-xl transition-transform ${
1112+ className = { `cursor-pointer text-xl bg-white transition-transform ${
11141113 isOpen ? "rotate-180" : ""
11151114 } `}
11161115 onClick = { ( ) => toggleEntityPermissions ( permission . entity ) }
11171116 />
11181117 </ div >
11191118
1120- { /* Roles Section (Hidden or Shown based on toggle) */ }
11211119 { isOpen && (
11221120 < div className = "grid grid-cols-3 gap-2 md:grid-cols-4" >
11231121 { [
You can’t perform that action at this time.
0 commit comments