diff --git a/App/frontend-app/src/components/chat/chatRoom.tsx b/App/frontend-app/src/components/chat/chatRoom.tsx index 89952cb9..a445b573 100644 --- a/App/frontend-app/src/components/chat/chatRoom.tsx +++ b/App/frontend-app/src/components/chat/chatRoom.tsx @@ -594,7 +594,9 @@ export function ChatRoom({ searchResultDocuments, selectedDocuments, chatWithDoc disabled={isLoading} onSubmit={handleSend} disableSend = {textAreaValue.trim().length === 0 || isLoading} - contentAfter={undefined} + send={{ + title: "Send" + }} /> diff --git a/App/frontend-app/src/components/documentViewer/dialogTitleBar.tsx b/App/frontend-app/src/components/documentViewer/dialogTitleBar.tsx index 1b0bb96a..284e14d0 100644 --- a/App/frontend-app/src/components/documentViewer/dialogTitleBar.tsx +++ b/App/frontend-app/src/components/documentViewer/dialogTitleBar.tsx @@ -1,5 +1,5 @@ import React, { useState, useEffect } from 'react'; -import { Button, Divider, Text, Tab, TabList, SelectTabEvent, SelectTabData, DialogTrigger } from '@fluentui/react-components'; +import { Button, Divider, Text, Tab, TabList, SelectTabEvent, SelectTabData, DialogTrigger, Tooltip } from '@fluentui/react-components'; import { Dismiss24Regular, ArrowHookDownLeft16Filled, SparkleFilled, DocumentBulletListMultipleRegular, DocumentBulletListRegular, LayerDiagonalSparkle24Regular, InfoRegular } from '@fluentui/react-icons'; import { DialogTitle } from '@fluentui/react-components'; import { KMBrandRamp } from '../../styles'; @@ -66,12 +66,14 @@ export function DialogTitleBar({ style={{ width: "100%" }} action={ - + + + {items} - + + + ); }