Skip to content

Commit

Permalink
Switch short name and version datasets columns (#4330)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakyi authored Dec 18, 2024
1 parent cf54ea1 commit 5fd35ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adminSiteClient/DatasetList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ class DatasetRow extends React.Component<{
</Link>
</td>
<td>{dataset.namespace}</td>
<td>{dataset.version}</td>
<td>{highlight(dataset.shortName)}</td>
<td>{dataset.version}</td>
<td>{dataset.numCharts}</td>
<td>
<Timeago
Expand Down Expand Up @@ -124,8 +124,8 @@ export class DatasetList extends React.Component<{
<tr>
<th>Dataset</th>
<th>Namespace</th>
<th>Version</th>
<th>Short name</th>
<th>Version</th>
<th>Number of charts</th>
<th>Uploaded</th>
<th>Notes</th>
Expand Down

0 comments on commit 5fd35ae

Please sign in to comment.