Skip to content

Commit 0f03b26

Browse files
committed
Move ID to repository name
1 parent f792e65 commit 0f03b26

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

Components/Repo/Repo.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,12 @@ export default function Repo(props: RepoProps) {
111111
<th style={{ width: '10%' }}>Storage Size</th>
112112
<th style={{ width: '30%' }}>Storage Used</th>
113113
<th style={{ width: '15%' }}>Last change</th>
114-
<th style={{ width: '5%' }}>ID</th>
115-
<th style={{ width: '5%' }}>Edit</th>
114+
<th style={{ width: '10%' }}>Edit</th>
116115
</tr>
117116
</thead>
118117
<tbody>
119118
<tr>
120-
<th>{props.repositoryName}</th>
119+
<th>{props.repositoryName} #{props.id}</th>
121120
<th>{props.storageSize} GB</th>
122121
<th style={{ padding: '0 4% 0 4%' }}>
123122
<StorageBar storageUsed={props.storageUsed} storageSize={props.storageSize} />
@@ -127,7 +126,6 @@ export default function Repo(props: RepoProps) {
127126
{props.lastSave === 0 ? '-' : fromUnixTime(props.lastSave).toLocaleString()}
128127
</div>
129128
</th>
130-
<th>#{props.id}</th>
131129
<th>
132130
<div className={classes.editButton}>
133131
<IconSettings
@@ -159,7 +157,6 @@ export default function Repo(props: RepoProps) {
159157
</div>
160158
<div className={classes.lastSave}>
161159
{props.lastSave === 0 ? null : fromUnixTime(props.lastSave).toLocaleString()}
162-
<span style={{ marginLeft: '20px', color: '#637381' }}>#{props.id}</span>
163160
</div>
164161
</div>
165162
</>

0 commit comments

Comments
 (0)