rename label for webhook columnIds

pull/832/head
CamilleLegeron 3 months ago
parent 2a18e15379
commit 22ad13a723

@ -63,7 +63,7 @@ const WEBHOOK_COLUMNS = [
id: 'vt_webhook_fc10',
colId: 'columnIds',
type: 'Text',
label: t('Columns to check when update (separated by ;)'),
label: t('Filter for changes in these columns (semicolon-separated ids)'),
},
{
id: 'vt_webhook_fc4',

@ -3352,7 +3352,7 @@ function testDocApi() {
*/
const serving: Serving = await serveSomething(app => {
app.use(express.json());
app.post('/200', ({ body }, res) => {
app.post('/200', ({body}, res) => {
res.sendStatus(200);
res.end();
});

Loading…
Cancel
Save