Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions backend/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "bug",
"message": "Fix link-row group-by crash in grid view with more than 20 linked items",
"issue_origin": "github",
"issue_number": 5184,
"domain": "database",
"bullet_points": [],
"created_at": "2026-04-13"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<template>
<div class="card-many-to-many__list-wrapper">
<div class="card-many-to-many__list">
<div
v-for="item in value"
:key="item.id"
class="card-many-to-many__item card-link-row"
:class="{
'card-link-row--unnamed': item.value === null || item.value === '',
}"
>
<span class="card-many-to-many__name">
{{
item.value || $t('gridViewFieldLinkRow.unnamed', { value: item.id })
}}
</span>
</div>
</div>
</div>
</template>

<script>
export default {
name: 'GridViewGroupValueLinkRow',
props: {
value: {
type: Array,
default: () => [],
},
},
}
</script>
5 changes: 5 additions & 0 deletions web-frontend/modules/database/fieldTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ import RowCardFieldEmail from '@baserow/modules/database/components/card/RowCard
import RowCardFieldFile from '@baserow/modules/database/components/card/RowCardFieldFile'
import RowCardFieldFormula from '@baserow/modules/database/components/card/RowCardFieldFormula'
import RowCardFieldLinkRow from '@baserow/modules/database/components/card/RowCardFieldLinkRow'
import GridViewGroupValueLinkRow from '@baserow/modules/database/components/view/grid/GridViewGroupValueLinkRow'
import RowCardFieldMultipleSelect from '@baserow/modules/database/components/card/RowCardFieldMultipleSelect'
import RowCardFieldNumber from '@baserow/modules/database/components/card/RowCardFieldNumber'
import RowCardFieldRating from '@baserow/modules/database/components/card/RowCardFieldRating'
Expand Down Expand Up @@ -1402,6 +1403,10 @@ export class LinkRowFieldType extends FieldType {
return RowCardFieldLinkRow
}

getGroupByComponent(field) {
return GridViewGroupValueLinkRow
}

getRowHistoryEntryComponent() {
return RowHistoryFieldLinkRow
}
Expand Down
Loading