Skip to content

Commit 4be8b78

Browse files
fix: bugs fix
- fix DV1.0 profile module record dynamic record echo failure, download failure, and status change failure - change spawn_strategy to standalone to improve compiling speed Change-Id: Ieaf56e941b96cb2afcd29827366e02960c7d7055
1 parent 0cdf9f4 commit 4be8b78

File tree

5 files changed

+249
-224
lines changed

5 files changed

+249
-224
lines changed

modules/dreamview/frontend/src/components/DataProfile/LocalRecordItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function LocalDynamicModelItem(props) {
5555
monitor.insert('INFO', 'Deleted successfully!', Date.now());
5656
setDeleteConfirmModalVisible(false);
5757
// 刷新列表
58-
WS.loadLocalRecords();
58+
// WS.loadLocalRecords();
5959
PLUGIN_WS.getRecordList();
6060
};
6161

modules/dreamview/frontend/src/components/DataProfile/RemoteResourseItemStatus.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ export function RemoteResourceItemBtn(props) {
9595
}
9696

9797
if (type === 2) {
98-
console.log('handleClick', status, id, type);
9998
PLUGIN_WS.downloadDynamicsModel(id);
10099
}
101100

modules/dreamview/frontend/src/components/DataProfile/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,6 @@ export default class DataProfile extends React.Component {
292292
className={currentKey === tab.key ? 'active' : ''}
293293
onClick={() => {
294294
this.setState({ currentKey: tab.key });
295-
if (tab.key === 'recordProfiles') {
296-
WS.checkWsConnection().loadLocalRecords();
297-
}
298295
}}
299296
>{tab.title}</span>
300297
);

0 commit comments

Comments
 (0)