1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-09 23:27:51 +00:00
bramw_baserow/web-frontend/modules/database/components/notifications/WebhookPayloadTooLargeNotification.vue
2025-03-12 17:08:38 +01:00

35 lines
939 B
Vue

<template>
<nuxt-link
class="notification-panel__notification-link"
:to="route"
@click.native="markAsReadAndHandleClick"
>
<div class="notification-panel__notification-content-title">
<i18n path="webhookPayloadTooLargeNotification.body" tag="span">
<template #name>
<strong>{{ notification.data.webhook_name }}</strong>
</template>
<template #event_id>
<strong>{{ notification.data.event_id }}</strong>
</template>
<template #batch_limit>
<strong>{{ notification.data.batch_limit }}</strong>
</template>
</i18n>
</div>
</nuxt-link>
</template>
<script>
import notificationContent from '@baserow/modules/core/mixins/notificationContent'
export default {
name: 'WebhookPayloadTooLargeNotification',
mixins: [notificationContent],
methods: {
handleClick() {
this.$emit('close-panel')
},
},
}
</script>