Skip to content

Commit f893dca

Browse files
committed
refactor: update import paths and improve CSS comments
- Changed import paths in Endpoint component to reflect new directory structure. - Updated CSS comment for responsive design to use proper syntax.
1 parent d374a18 commit f893dca

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

src/layouts/Header/header.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
}
3232
}
3333

34-
//
35-
响应式设计
34+
/* 响应式设计 */
3635
@media (max-width: 768px) {
3736
.header-container {
3837
.header-main-row {

src/views/statics/Endpoint/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { useQuery } from '@tanstack/react-query';
22
import { Spin } from 'antd';
33
import type React from 'react';
44
import { useState } from 'react';
5-
import type { EndpointSearchParams } from '@/services/integrated/endpoint/endpointApi';
6-
import { endpointService } from '@/services/integrated/endpoint/endpointApi';
5+
import { endpointService } from '@/services/engine/endpoint/api';
6+
import type { EndpointSearchParams } from '@/services/engine/endpoint/types';
77
import EndpointCharts from './components/EndpointCharts';
88
import EndpointStatistics from './components/EndpointStatistics';
99
import { useEndpointStatistics } from './hooks/useEndpointStatistics';

0 commit comments

Comments
 (0)