File tree Expand file tree Collapse file tree
ui-components/record-edit-fields Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11< h1 mat-dialog-title > Log details</ h1 >
22< mat-dialog-content >
3- < p class ="mat-body-1 " data-block ="preamble " data-hj-suppress >
3+ < p class ="mat-body-1 " data-block ="preamble " data-ph-no-capture >
44 {{ log.User }} {{ action }} in "{{ normalizedTableName }}" table on {{formattedCrreatedAt}} {{ log.Status }}.
55 </ p >
66
@@ -10,10 +10,10 @@ <h1 mat-dialog-title>Log details</h1>
1010 class ="mat-body "
1111 [ngClass] ="{changed: isChangedFiled(field)} ">
1212 < th > {{filedsNames[field]}}</ th >
13- < td data-hj-suppress *ngIf ="log.currentValue[field] !== '* * * sensitive data, no logs stored * * *' ">
13+ < td data-ph-no-capture *ngIf ="log.currentValue[field] !== '* * * sensitive data, no logs stored * * *' ">
1414 {{log.prevValue[field]}}
1515 </ td >
16- < td data-hj-suppress
16+ < td data-ph-no-capture
1717 [attr.colspan] ="log.currentValue[field] === '* * * sensitive data, no logs stored * * *' ? '2' : '' "
1818 [ngClass] ="{sensitive: log.currentValue[field] === '* * * sensitive data, no logs stored * * *'} ">
1919 < div class ="updated-cell ">
@@ -35,7 +35,7 @@ <h1 mat-dialog-title>Log details</h1>
3535 class ="mat-body "
3636 [ngClass] ="{changed: isChangedFiled(field)} ">
3737 < th > {{filedsNames[field.key]}}</ th >
38- < td data-hj-suppress *ngIf ="log.currentValue[field] !== '* * * sensitive data, no logs stored * * *' ">
38+ < td data-ph-no-capture *ngIf ="log.currentValue[field] !== '* * * sensitive data, no logs stored * * *' ">
3939 {{field.value}}
4040 </ td >
4141 </ tr >
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ <h3>SQL Query</h3>
4747 {{ testing() ? 'Testing...' : 'Test Query' }}
4848 </ button >
4949 </ div >
50- < div class ="code-editor-box " data-hj-suppress >
50+ < div class ="code-editor-box " data-ph-no-capture >
5151 < ngs-code-editor
5252 [theme] ="codeEditorTheme "
5353 [codeModel] ="codeModel() "
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ <h2 class="mat-heading-2 row-preview-sidebar__title">Preview</h2>
8080 < ng-container *ngIf ="selectedRow && selectedRow.record; else loadingContent ">
8181 < div *ngFor ="let column of columns; let i = index " class ="row-preview-sidebar__field ">
8282 < strong > {{column.normalizedTitle}}</ strong >
83- < div data-hj-suppress class ="row-preview-sidebar__value ">
83+ < div data-ph-no-capture class ="row-preview-sidebar__value ">
8484 < ng-container *ngIf ="isForeignKey(column.title); else recordContent ">
8585 < app-foreign-key-record-view
8686 link ="/dashboard/{{selectedRow.connectionID}}/{{selectedRow.foreignKeys[column.title]?.referenced_table_name}}/entry "
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ <h2 class="mat-h2 table-name">{{ displayName }}</h2>
185185</ div >
186186
187187< div *ngIf ="getFiltersCount(activeFilters) !== 0 && !hasSavedFilterActive " class ="active-filters ">
188- < mat-chip-row *ngFor ="let activeFilter of activeFilters | keyvalue " data-hj-suppress
188+ < mat-chip-row *ngFor ="let activeFilter of activeFilters | keyvalue " data-ph-no-capture
189189 class ="db-table-active-filter-chip "
190190 (removed) ="removeFilter.emit(activeFilter.key) "
191191 (click) ="handleActiveFilterClick(activeFilter.key) ">
@@ -282,7 +282,7 @@ <h2 class="mat-h2 table-name">{{ displayName }}</h2>
282282 </ button >
283283 </ mat-menu >
284284 </ mat-header-cell >
285- < mat-cell *matCellDef ="let element; let i = index " [attr.data-label] ="tableData.dataNormalizedColumns[column] " class ="db-table-cell " data-hj-suppress >
285+ < mat-cell *matCellDef ="let element; let i = index " [attr.data-label] ="tableData.dataNormalizedColumns[column] " class ="db-table-cell " data-ph-no-capture >
286286 < div class ="table-cell-content ">
287287 < ng-container *ngIf ="isForeignKey(column); else contentCell ">
288288 < app-display-foreign-key
Original file line number Diff line number Diff line change 179179 </ div >
180180 </ form >
181181 < div class ="static-filters " *ngIf ="savedFilterMap[selectedFilterSetId]?.staticFilters?.length ">
182- < mat-chip *ngFor ="let filter of savedFilterMap[selectedFilterSetId]?.staticFilters " class ="static-filter-chip " data-hj-suppress >
182+ < mat-chip *ngFor ="let filter of savedFilterMap[selectedFilterSetId]?.staticFilters " class ="static-filter-chip " data-ph-no-capture >
183183 {{ getFilter(filter) }}
184184 </ mat-chip >
185185 </ div >
Original file line number Diff line number Diff line change 11< span class ="mat-body-1 "> {{ normalizedLabel }} {{ required ? '*' : '' }}</ span >
22
3- < div class ="code-editor-box " data-hj-suppress >
3+ < div class ="code-editor-box " data-ph-no-capture >
44 < ngs-code-editor
55 [theme] ="codeEditorTheme "
66 [codeModel] ="mutableCodeModel "
Original file line number Diff line number Diff line change 11< span class ="mat-body-1 "> {{ normalizedLabel }} {{ required ? '*' : '' }}</ span >
22
3- < div class ="code-editor-box " data-hj-suppress >
3+ < div class ="code-editor-box " data-ph-no-capture >
44 < ngs-code-editor
55 theme ="vs "
66 [codeModel] ="mutableCodeModel "
Original file line number Diff line number Diff line change 11< span class ="mat-body-1 "> {{ normalizedLabel }} {{ required ? '*' : '' }}</ span >
22
3- < div class ="code-editor-box " data-hj-suppress >
3+ < div class ="code-editor-box " data-ph-no-capture >
44 < ngs-code-editor
55 [theme] ="codeEditorTheme "
66 [codeModel] ="mutableCodeModel "
Original file line number Diff line number Diff line change @@ -85,10 +85,12 @@ if ((environment as any).saas) {
8585 } ) ;
8686}
8787
88- posthog . init ( 'phc_VPnWHIMj9UjhRLPr7shATjgL0J4KrWWOHkK3JwZbnkw' , {
89- api_host : 'https://us.i.posthog.com' ,
90- defaults : '2025-11-30' ,
91- } ) ;
88+ if ( ( environment as any ) . saas ) {
89+ posthog . init ( 'phc_VPnWHIMj9UjhRLPr7shATjgL0J4KrWWOHkK3JwZbnkw' , {
90+ api_host : 'https://us.i.posthog.com' ,
91+ defaults : '2025-11-30' ,
92+ } ) ;
93+ }
9294
9395bootstrapApplication ( AppComponent , {
9496 providers : [
You can’t perform that action at this time.
0 commit comments