Skip to content

Commit

Permalink
fix: Console page styles (#755)
Browse files Browse the repository at this point in the history
  • Loading branch information
huaxiabuluo authored Jan 22, 2024
1 parent 49a3a05 commit d61286d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/pages/Console/Drawer/SchemaDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ const SchemaDrawer = () => {
getTitle: (item) => item.name,
getKey: (item) => item.name,
getName: (item) => item.name,
icon: <Icon type="icon-workflow-autoLayout" className={styles.treeNodeIcon} />,
icon: <Icon type="icon-vesoft-space-dashboard-filled" className={styles.treeNodeIcon} />,
},
tag: {
isLeaf: false,
getTitle: (item) => item.name,
getKey: (item) => `${space}.${item.name}`,
getName: (item) => item.name,
icon: <Icon type="icon-Thumbnail-graphView" className={styles.treeNodeIcon} />,
icon: <Icon type="icon-vesoft-dots-hexagon" className={styles.treeNodeIcon} />,
},
edge: {
isLeaf: false,
getTitle: (item) => item.name,
getKey: (item) => `${space}.${item.name}`,
getName: (item) => item.name,
icon: <Icon type="icon-nav-findPath" className={styles.treeNodeIcon} />,
icon: <Icon type="icon-vesoft-edge-type" className={styles.treeNodeIcon} />,
},
field: {
isLeaf: true,
Expand Down
1 change: 1 addition & 0 deletions app/pages/Console/Drawer/index.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@
.fieldTypeName {
max-width: 65%;
display: inline-flex;
color: #71717A;
}
.fieldTypeTag {
margin-left: 5px;
Expand Down
2 changes: 1 addition & 1 deletion app/pages/Console/index.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
border-radius: 3px;
min-height: 120px;
resize: vertical;
overflow-y: hidden;
overflow: hidden;

.btnOpenParam {
display: flex;
Expand Down

0 comments on commit d61286d

Please sign in to comment.