diff --git a/web/src/components/WebhooksTable.js b/web/src/components/WebhooksTable.js index 367f3d5..8d81889 100644 --- a/web/src/components/WebhooksTable.js +++ b/web/src/components/WebhooksTable.js @@ -1,5 +1,5 @@ import React, { useEffect, useState } from 'react'; -import { Button, Form, Label, Pagination, Table } from 'semantic-ui-react'; +import { Button, Form, Label, Pagination, Table, Popup } from 'semantic-ui-react'; import { Link } from 'react-router-dom'; import { API, copy, showError, showSuccess, showWarning } from '../helpers'; @@ -223,6 +223,7 @@ const WebhooksTable = () => { ) .map((webhook, idx) => { if (webhook.deleted) return <>>; + const webhookUrl = `${window.location.origin}/webhook/${webhook.link}`; return (