fix tab name
This commit is contained in:
@ -1197,25 +1197,25 @@ function App() {
|
|||||||
className={`tab-button ${activeTab === 'comments' ? 'active' : ''}`}
|
className={`tab-button ${activeTab === 'comments' ? 'active' : ''}`}
|
||||||
onClick={() => setActiveTab('comments')}
|
onClick={() => setActiveTab('comments')}
|
||||||
>
|
>
|
||||||
Comments ({comments.filter(shouldShowComment).length})
|
comment ({comments.filter(shouldShowComment).length})
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
className={`tab-button ${activeTab === 'ai-chat' ? 'active' : ''}`}
|
className={`tab-button ${activeTab === 'ai-chat' ? 'active' : ''}`}
|
||||||
onClick={() => setActiveTab('ai-chat')}
|
onClick={() => setActiveTab('ai-chat')}
|
||||||
>
|
>
|
||||||
AI Chat ({aiChatHistory.length})
|
chat ({aiChatHistory.length})
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
className={`tab-button ${activeTab === 'lang-en' ? 'active' : ''}`}
|
className={`tab-button ${activeTab === 'lang-en' ? 'active' : ''}`}
|
||||||
onClick={() => setActiveTab('lang-en')}
|
onClick={() => setActiveTab('lang-en')}
|
||||||
>
|
>
|
||||||
AI Lang:en ({langEnRecords.length})
|
en ({langEnRecords.length})
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
className={`tab-button ${activeTab === 'ai-comment' ? 'active' : ''}`}
|
className={`tab-button ${activeTab === 'ai-comment' ? 'active' : ''}`}
|
||||||
onClick={() => setActiveTab('ai-comment')}
|
onClick={() => setActiveTab('ai-comment')}
|
||||||
>
|
>
|
||||||
AI Comment ({aiCommentRecords.length})
|
feedback ({aiCommentRecords.length})
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -1543,4 +1543,4 @@ function App() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
Reference in New Issue
Block a user