mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-04 19:53:19 +08:00
Prevent closing assign modal from inventory for dropdown options [SCI-8640] (#5593)
This commit is contained in:
parent
dea721cdf0
commit
272de72231
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
|||
<template v-if="options.length">
|
||||
<div
|
||||
v-for="option in options"
|
||||
:key="option[0]" @mousedown.stop="setValue(option[0])"
|
||||
:key="option[0]" @mousedown.prevent.stop="setValue(option[0])"
|
||||
class="sn-select__option"
|
||||
>
|
||||
{{ option[1] }}
|
||||
|
|
Loading…
Reference in a new issue