修复主题切换全局class未变化

This commit is contained in:
hanhh
2021-09-21 23:29:38 +08:00
parent 5b585e0cda
commit c15ff89746
5 changed files with 55 additions and 26 deletions
+5
View File
@@ -672,6 +672,10 @@ const Crontab = ({ headerStyle, isPhone }: any) => {
localStorage.setItem('pageSize', pageSize + '');
};
const getRowClassName = (record: any, index: number) => {
return record.isPinned ? 'pinned-cron' : '';
};
useEffect(() => {
if (logCron) {
localStorage.setItem('logCron', logCron._id);
@@ -773,6 +777,7 @@ const Crontab = ({ headerStyle, isPhone }: any) => {
scroll={{ x: 768 }}
loading={loading}
rowSelection={rowSelection}
rowClassName={getRowClassName}
/>
<CronLogModal
visible={isLogModalVisible}