1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-17 22:32:02 +00:00
bramw_baserow/web-frontend/modules/database/components/view/grid/GridViewRowExpandButton.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
286 B
Vue
Raw Normal View History

<template functional>
<a
class="grid-view__row-more"
@click="listeners['edit-modal'] && listeners['edit-modal']()"
>
2025-04-17 10:26:35 +00:00
<i class="baserow-icon-enlarge-row"></i>
</a>
</template>
<script>
export default {
name: 'GridViewRowExpandButton',
functional: true,
}
</script>