mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-07 06:15:36 +00:00
Fixed undefined event when copying rows via multiple row context
This commit is contained in:
parent
60ccad226d
commit
d327122c82
2 changed files with 8 additions and 1 deletions
changelog/entries/unreleased/bug
web-frontend/modules/database/components/view/grid
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"type": "bug",
|
||||
"message": "Fixed undefined event when copying rows via multiple row context.",
|
||||
"issue_number": null,
|
||||
"bullet_points": [],
|
||||
"created_at": "2023-10-28"
|
||||
}
|
|
@ -140,7 +140,7 @@
|
|||
>
|
||||
<ul v-show="isMultiSelectActive" class="context__menu">
|
||||
<li>
|
||||
<a @click=";[copySelection(), $refs.rowContext.hide()]">
|
||||
<a @click=";[copySelection($event), $refs.rowContext.hide()]">
|
||||
<i class="context__menu-icon iconoir-copy"></i>
|
||||
{{ $t('gridView.copyCells') }}
|
||||
</a>
|
||||
|
|
Loading…
Add table
Reference in a new issue