We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a19b43 + 1ea54af commit 78c503bCopy full SHA for 78c503b
ui/packages/shared/pages/Instance/components/ClonesList/index.tsx
@@ -88,6 +88,7 @@ export const ClonesList = (props: Props) => {
88
<ArrowDropDownIcon className={styles.sortIcon} />
89
</div>
90
</TableHeaderCell>
91
+ <TableHeaderCell>Port</TableHeaderCell>
92
<TableHeaderCell>DB user</TableHeaderCell>
93
<TableHeaderCell>
94
<Tooltip content="Clone's own size – how much data was added or modified.">
@@ -147,6 +148,7 @@ export const ClonesList = (props: Props) => {
147
148
})}
149
)
150
</TableBodyCell>
151
+ <TableBodyCell>{clone.db.port}</TableBodyCell>
152
<TableBodyCell>{clone.db.username}</TableBodyCell>
153
<TableBodyCell>
154
{formatBytesIEC(clone.metadata.cloneDiffSize)}
0 commit comments