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
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class ConnectionSettingsComponent implements OnInit {

for (const [key, value] of Object.entries(this.connectionSettings)) {
if (key === 'hidden_tables') {
updatedSettings[key] = value.length > 0;
updatedSettings[key] = value?.length > 0;
} else {
updatedSettings[key] = Boolean(value);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h2 class="mat-heading-2" style="margin-bottom: -4px; margin-top: 12px">"Edit ro
[(ngModel)]="tableSettings.autocomplete_columns">
<mat-option *ngFor="let field of fields" [value]="field">{{field}}</mat-option>
</mat-select>
<mat-hint>Choose the columns Rocketadmin scans within a related table when using the foreign keys box.</mat-hint>
<mat-hint>Choose the columns Rocketadmin scans within a related table when selecting a foreign key.</mat-hint>
</mat-form-field>

<mat-form-field appearance="outline">
Expand Down