Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dlink
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhaowei
dlink
Commits
db423486
Commit
db423486
authored
Dec 15, 2021
by
coderTomato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决sql编辑器因关闭tab而消失的问题
去掉不需要的依赖
parent
102c2086
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
17 deletions
+12
-17
pom.xml
dlink-admin/pom.xml
+3
-11
StudioController.java
.../src/main/java/com/dlink/controller/StudioController.java
+1
-1
pom.xml
dlink-metadata/dlink-metadata-base/pom.xml
+1
-1
pom.xml
dlink-metadata/dlink-metadata-clickhouse/pom.xml
+1
-2
pom.xml
dlink-metadata/dlink-metadata-mysql/pom.xml
+2
-2
index.tsx
dlink-web/src/components/Studio/StudioTabs/index.tsx
+4
-0
No files found.
dlink-admin/pom.xml
View file @
db423486
...
...
@@ -126,20 +126,12 @@
<groupId>
com.dlink
</groupId>
<artifactId>
dlink-gateway
</artifactId>
</dependency>
<
!--<
dependency>
<dependency>
<groupId>
com.dlink
</groupId>
<artifactId>
dlink-metadata-clickhouse
</artifactId>
<version>
0.5.0-SNAPSHOT
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>ru.yandex.clickhouse</groupId>
<artifactId>clickhouse-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.dlink</groupId>
<artifactId>dlink-metadata-mysql</artifactId>
<version>0.5.0-SNAPSHOT</version>
</dependency>-->
</dependencies>
<build>
<plugins>
...
...
@@ -220,4 +212,4 @@
</plugins>
<finalName>
${project.artifactId}-${project.version}
</finalName>
</build>
</project>
\ No newline at end of file
</project>
dlink-admin/src/main/java/com/dlink/controller/StudioController.java
View file @
db423486
...
...
@@ -48,7 +48,7 @@ public class StudioController {
}
/**
*
解释Sql
*
获取执行图
*/
@PostMapping
(
"/getStreamGraph"
)
public
Result
getStreamGraph
(
@RequestBody
StudioExecuteDTO
studioExecuteDTO
)
{
...
...
dlink-metadata/dlink-metadata-base/pom.xml
View file @
db423486
...
...
@@ -35,4 +35,4 @@
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
dlink-metadata/dlink-metadata-clickhouse/pom.xml
View file @
db423486
...
...
@@ -24,7 +24,6 @@
<dependency>
<groupId>
ru.yandex.clickhouse
</groupId>
<artifactId>
clickhouse-jdbc
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
dlink-metadata/dlink-metadata-mysql/pom.xml
View file @
db423486
...
...
@@ -24,7 +24,7 @@
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<scope>
test
</scope
>
<!-- <scope>test</scope>--
>
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
dlink-web/src/components/Studio/StudioTabs/index.tsx
View file @
db423486
...
...
@@ -26,6 +26,10 @@ const EditorTabs = (props: any) => {
if
(
action
==
'add'
)
{
add
();
}
else
if
(
action
==
'remove'
)
{
dispatch
&&
dispatch
({
type
:
"Studio/saveToolHeight"
,
payload
:
toolHeight
-
0.0001
,
});
if
(
current
.
isModified
)
{
saveTask
(
current
,
dispatch
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment