Skip to content

Commit 0bd3a32

Browse files
committed
fix: different interface fixes
1 parent cb21ce3 commit 0bd3a32

File tree

8 files changed

+10
-7
lines changed

8 files changed

+10
-7
lines changed

src/components/InfoViewer/InfoViewer.scss

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
flex: 1 1 auto;
3131
align-items: baseline;
3232

33+
min-width: 200px;
3334
max-width: 200px;
3435

3536
white-space: nowrap;

src/containers/Node/Node.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
}
3939

4040
&__overview-wrapper {
41-
padding: 0 20px;
41+
padding: 0 20px 20px;
4242
}
4343

4444
&__node-page-wrapper {

src/containers/Node/NodeStructure/NodeStructure.scss

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
&__vdisk-details {
6868
overflow: auto;
6969

70+
min-width: 200px;
7071
max-height: 90vh;
7172

7273
.vdisk-pdisk-node__column {

src/containers/Storage/StorageGroups/StorageGroups.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
display: inline-block;
1616
overflow: hidden;
1717

18-
max-width: 150px;
18+
width: 230px;
19+
max-width: 230px;
1920

2021
text-overflow: ellipsis;
2122
}

src/containers/Storage/StorageGroups/StorageGroups.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function StorageGroups({data, tableSettings, visibleEntities, nodes}: StorageGro
8484
{
8585
name: TableColumnsIds.PoolName,
8686
header: tableColumnsNames[TableColumnsIds.PoolName],
87-
width: 160,
87+
width: 250,
8888
render: ({value}) => {
8989
const splitted = (value as string)?.split('/');
9090
return (

src/containers/Storage/StorageNodes/StorageNodes.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.global-storage-groups {
1+
.global-storage-nodes {
22
&__pdisks-wrapper {
33
display: flex;
44
overflow-x: auto;
@@ -15,7 +15,8 @@
1515
display: inline-block;
1616
overflow: hidden;
1717

18-
max-width: 340px;
18+
width: 330px;
19+
max-width: 330px;
1920

2021
text-overflow: ellipsis;
2122
}

src/containers/Storage/StorageNodes/StorageNodes.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const tableColumnsNames: Record<TableColumnsIdsValues, string> = {
3434
Missing: 'Missing',
3535
};
3636

37-
const b = cn('global-storage-groups');
37+
const b = cn('global-storage-nodes');
3838

3939
function setSortOrder(visibleEntities: keyof typeof VisibleEntities): SortOrder | undefined {
4040
switch (visibleEntities) {

src/services/api.js

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
2626
return this.get(this.getPath('/viewer/json/tenantinfo'), {
2727
tablets: 1,
2828
storage: 1,
29-
nodes: 1,
3029
});
3130
}
3231
getTenantInfo({path}) {

0 commit comments

Comments
 (0)