Skip to content

Commit 8658641

Browse files
committed
fix: fix yarnrc and some todo
fix yarnrc and some todo
1 parent aa772a4 commit 8658641

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.yarnrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Set default registry: yarn config set registry https://registry.yarnpkg.com
2-
registry=http://registry.npm.dtstack.com/
2+
registry "http://registry.npm.dtstack.com/"

src/extensions/explore/explore.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,14 @@ export const Explorer: React.FunctionComponent<IExplorerProps> = (
116116
e.stopPropagation()
117117
console.log('onClick:', e, item);
118118
};
119+
/**
120+
* TODO: withdraw and log
121+
*/
119122
const render = (render) => {
120123
if (render) {
121124
return render()
122125
} else {
123-
return 'cannot provide...'
126+
return 'Cannot provide...'
124127
}
125128
}
126129
const { panelSet, explorerToolbar, activePanelKey } = state;

src/extensions/explore/tree.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const TreeView: React.FunctionComponent<ITreeProps> = (
2828

2929
/**
3030
* Refer to antd for details
31+
* TODO: move component
3132
*/
3233
const onDrop = info => {
3334
console.log(info);

0 commit comments

Comments
 (0)