From 78721710355fa427496e4e576c4f563926cec712 Mon Sep 17 00:00:00 2001 From: lorentz Date: Mon, 23 Mar 2026 11:48:33 -0400 Subject: [PATCH] fix: INTERNAL_PUBLISH 1->2 (publish=2 is Internal Users Only in Autotask) --- components/quotes/ticket-detail-modal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/quotes/ticket-detail-modal.tsx b/components/quotes/ticket-detail-modal.tsx index 65835c2..81215e2 100644 --- a/components/quotes/ticket-detail-modal.tsx +++ b/components/quotes/ticket-detail-modal.tsx @@ -32,8 +32,8 @@ import { // noteType values that are system/automated (workflow rules, monitoring, auto-close, etc.) const SYSTEM_NOTE_TYPES = new Set([13, 91, 93, 94, 99, 101]); -// publish=1 means Internal Users Only in Autotask -const INTERNAL_PUBLISH = 1; +// publish=2 means Internal Users Only in Autotask +const INTERNAL_PUBLISH = 2; const URL_REGEX = /https?:\/\/[^\s<>"'\[\]()]+/g;