1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-09-16 17:48:19 +00:00
bramw_baserow/premium/web-frontend/modules/baserow_premium/applicationTypes.js
2023-08-25 07:25:27 +00:00

9 lines
390 B
JavaScript

import { DatabaseApplicationType } from '@baserow/modules/database/applicationTypes'
import GridViewRowExpandButtonWithCommentCount from '@baserow_premium/components/row_comments/GridViewRowExpandButtonWithCommentCount'
export class PremiumDatabaseApplicationType extends DatabaseApplicationType {
getRowExpandButtonComponent() {
return GridViewRowExpandButtonWithCommentCount
}
}