mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
432 B
18 lines
432 B
1 year ago
|
<script setup lang="ts">
|
||
|
import type { ProjectEventType } from 'nocodb-sdk'
|
||
|
|
||
|
const props = defineProps<{
|
||
|
item: ProjectEventType
|
||
|
}>()
|
||
|
|
||
|
const item = toRef(props, 'item')
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<NotificationItemWrapper :item="item">
|
||
|
<div class="text-xs">
|
||
|
<strong>{{ item.data?.user?.name }}</strong> {{ item.data?.action }} <strong>{{ item.data?.table?.name }}</strong>
|
||
|
</div>
|
||
|
</NotificationItemWrapper>
|
||
|
</template>
|