Skip to content

Commit 3b7bc1b

Browse files
authored
feat(ui): Add type column to source maps (#19596)
1 parent 1cb494d commit 3b7bc1b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/sentry/static/sentry/app/views/settings/projectSourceMaps/list/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ class ProjectSourceMaps extends AsyncView<Props, State> {
150150
headers={[
151151
t('Archive'),
152152
<ArtifactsColumn key="artifacts">{t('Artifacts')}</ArtifactsColumn>,
153+
t('Type'),
153154
t('Date Created'),
154155
'',
155156
]}
@@ -166,7 +167,9 @@ class ProjectSourceMaps extends AsyncView<Props, State> {
166167
}
167168

168169
const StyledPanelTable = styled(PanelTable)`
169-
grid-template-columns: 1fr max-content minmax(260px, max-content) 75px;
170+
grid-template-columns:
171+
1fr max-content minmax(85px, max-content) minmax(260px, max-content)
172+
75px;
170173
`;
171174

172175
const ArtifactsColumn = styled('div')`

src/sentry/static/sentry/app/views/settings/projectSourceMaps/list/sourceMapsArchiveRow.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ const SourceMapsArchiveRow = ({archive, orgId, projectId, onDelete}: Props) => {
3838
<ArtifactsColumn>
3939
<Count value={fileCount} />
4040
</ArtifactsColumn>
41+
<Column>{t('release')}</Column>
4142
<Column>
4243
<DateTime date={date} />
4344
</Column>

0 commit comments

Comments
 (0)