diff --git a/web/chat/thread-top-bar.react.js b/web/chat/thread-top-bar.react.js --- a/web/chat/thread-top-bar.react.js +++ b/web/chat/thread-top-bar.react.js @@ -2,6 +2,7 @@ import * as React from 'react'; +import { threadIsPending } from 'lib/shared/thread-utils'; import type { ThreadInfo } from 'lib/types/thread-types'; import ThreadAncestors from './chat-thread-ancestors.react'; @@ -20,6 +21,11 @@ [threadInfo.color], ); + let threadMenu = null; + if (!threadIsPending(threadInfo.id)) { + threadMenu = ; + } + return (
@@ -30,7 +36,7 @@

{threadInfo.uiName}

- + {threadMenu}
); }