[WIP] dropdown bug

This commit is contained in:
daniel31x13
2023-10-28 07:20:35 -04:00
parent ac795cdbdc
commit db47a2a142
3 changed files with 18 additions and 4 deletions
+7 -2
View File
@@ -139,7 +139,7 @@ export default function LinkCard({ link, count, className }: Props) {
permissions?.canDelete) && (
<div
onClick={(e) => {
console.log();
console.log(expandDropdown);
setExpandDropdown({ x: e.clientX, y: e.clientY });
}}
id={"expand-dropdown" + link.id}
@@ -228,6 +228,11 @@ export default function LinkCard({ link, count, className }: Props) {
</div>
{expandDropdown ? (
<Dropdown
style={{
position: "fixed",
top: `${expandDropdown.y}px`,
left: `${expandDropdown.x}px`,
}}
items={[
permissions === true
? {
@@ -273,7 +278,7 @@ export default function LinkCard({ link, count, className }: Props) {
if (target.id !== "expand-dropdown" + link.id)
setExpandDropdown(false);
}}
className="absolute top-12 right-5 w-40"
className="w-40"
/>
) : null}
</div>