1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix: result table cells/rows not loses focus clicking outside

This commit is contained in:
2022-06-26 10:21:17 +02:00
parent a80d227400
commit 0a3a4827dd
2 changed files with 6 additions and 1 deletions

View File

@ -308,6 +308,8 @@ export default defineComponent({
};
const adjustListPosition = () => {
if (!optionList.value) return;
const element = el.value;
let { left, top } = element.getBoundingClientRect();
const { left: offsetLeft = 0, top: offsetTop = 0 } = props.dropdownOffsets;