Yuki Takei hai 1 ano
pai
achega
c2c76c7f26

+ 3 - 2
apps/app/src/features/openai/chat/components/AiChatModal/AiChatModal.module.scss

@@ -2,7 +2,7 @@
 @use '@growi/core-styles/scss/variables/growi-official-colors';
 @use '@growi/ui/scss/atoms/btn-muted';
 
-.rag-search-modal :global {
+.grw-aichat-modal :global {
 
   .textarea-ask {
     max-height: 30vh;
@@ -15,7 +15,7 @@
 
 
 // == Colors
-.rag-search-modal :global {
+.grw-aichat-modal :global {
   .growi-ai-chat-icon {
     color: growi-official-colors.$growi-ai-purple;
   }
@@ -24,3 +24,4 @@
     @include btn-muted.colorize(bs.$purple, bs.$purple);
   }
 }
+

+ 1 - 1
apps/app/src/features/openai/chat/components/AiChatModal/AiChatModal.tsx

@@ -16,7 +16,7 @@ import { ResizableTextarea } from './ResizableTextArea';
 
 import styles from './AiChatModal.module.scss';
 
-const moduleClass = styles['rag-search-modal'];
+const moduleClass = styles['grw-aichat-modal'] ?? '';
 
 const logger = loggerFactory('growi:clinet:components:RagSearchModal');