lavoce #22

Merged
bragaz_rexita merged 19 commits from lavoce into main 2025-11-25 03:50:55 +00:00
Showing only changes of commit 5989948bf9 - Show all commits

View File

@@ -1041,10 +1041,7 @@ const ListNotification = memo(function ListNotification(props) {
</Button>
</Space>
</Card>
{logHistoryData.slice(0, 2).map(
(
log // Menampilkan 2 log terbaru sebagai pratinjau
) => (
{logHistoryData.map((log) => (
<Card
key={log.id}
size="small"
@@ -1061,17 +1058,7 @@ const ListNotification = memo(function ListNotification(props) {
{log.timestamp}
</Text>
</Card>
)
)}
<div style={{ textAlign: 'center', paddingTop: '8px' }}>
<Button
type="link"
style={{ padding: 0 }}
onClick={() => setModalContent('log')}
>
View All Log History
</Button>
</div>
))}
</Space>
</Card>
</Col>