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
1 change: 1 addition & 0 deletions dist/1326.9234d3c9df390cdf.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/168.4ffc9034d96ad235.js

This file was deleted.

1 change: 1 addition & 0 deletions dist/168.79366907eff269ab.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion dist/runtime.1adb24c16ff25b9a.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ <h4 class="text-center" style="color: black !important">
<mat-step>
<ng-template matStepLabel>Service Options</ng-template>
<br />

<ng-container *ngIf="viewSchema && !subscriptionRequired">
<ng-container formGroupName="config">
<ng-container *ngIf="!isDatabase || !hasStandardFields">
Expand Down Expand Up @@ -487,6 +488,7 @@ <h4 class="text-center" style="color: black !important">
[icon]="faCircleInfo"
[matTooltip]="'services.controls.serviceType.tooltip' | transloco" />
</mat-form-field>

<mat-form-field
subscriptSizing="dynamic"
class="dynamic-width"
Expand All @@ -502,6 +504,20 @@ <h4 class="text-center" style="color: black !important">
[icon]="faCircleInfo"
[matTooltip]="'services.controls.namespace.tooltip' | transloco" />
</mat-form-field>

<!-- Excel Service Configuration -->
<ng-container *ngIf="serviceForm.getRawValue().type === 'excel'">
<mat-form-field appearance="outline" class="full-width">
<mat-label>Storage Service *</mat-label>
<mat-select formControlName="storageServiceId" required>
<mat-option
*ngFor="let service of availableFileServices"
[value]="service.id">
{{ service.label || service.name }}
</mat-option>
</mat-select>
</mat-form-field>
</ng-container>
<mat-form-field
subscriptSizing="dynamic"
appearance="outline"
Expand Down
Loading