Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v6
- uses: valitydev/action-frontend/setup-install@v3
- name: Build
run: npm run build -- --define "SENTRY_DSN='${SENTRY_DSN}'"
run: npm run build -- --define "SENTRY_DSN='${SENTRY_DSN}'" --define "SENTRY_RELEASE='${GITHUB_SHA}'"
env:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
- name: Optimize i18n
Expand All @@ -22,6 +22,7 @@ jobs:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
with:
environment: production
sourcemaps: ./dist/browser
set_commits: skip
- name: Remove source maps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
fxLayout="column"
fxLayoutGap="32px"
>
<div fxLayout fxLayoutAlign="end">
<!-- <div fxLayout fxLayoutAlign="end">
<button mat-flat-button (click)="createInvitation()">
{{ t('createInvitation') }}
</button>
</div>
</div> -->
@if (organization$ | async; as organization) {
@if (isLoading$ | async) {
<dsh-spinner fxFlexAlign="center"></dsh-spinner>
Expand Down
10 changes: 5 additions & 5 deletions src/components/nested-table/nested-table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@
</td>
}
</ng-container>
}

<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr>
<tr *matRowDef="let row; columns: displayedColumns" mat-row></tr>
@if (footerTemplates) {
<tr *matFooterRowDef="displayedColumns; sticky: true" mat-footer-row></tr>
}
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr>
<tr *matRowDef="let row; columns: displayedColumns" mat-row></tr>
@if (footerTemplates) {
<tr *matFooterRowDef="displayedColumns; sticky: true" mat-footer-row></tr>
}
</table>
1 change: 1 addition & 0 deletions src/globals.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
declare const SENTRY_DSN: string;
declare const SENTRY_RELEASE: string;
1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ if (environment.production) {
if (SENTRY_DSN) {
Sentry.init({
dsn: SENTRY_DSN,
release: typeof SENTRY_RELEASE === 'undefined' ? undefined : SENTRY_RELEASE,
environment: environment.production ? 'production' : 'development',
integrations: [
Sentry.browserTracingIntegration(),
Expand Down
Loading