Skip to content

Commit 3cd9fb5

Browse files
authored
Merge pull request #449 from dreamfactorysoftware/excel-serviceid-fix
Excel serviceid fix
2 parents 28cdc85 + 529c597 commit 3cd9fb5

7 files changed

Lines changed: 337 additions & 27 deletions

File tree

dist/1326.9234d3c9df390cdf.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/168.4ffc9034d96ad235.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/168.79366907eff269ab.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/runtime.1adb24c16ff25b9a.js

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/adf-services/df-service-details/df-service-details.component.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ <h4 class="text-center" style="color: black !important">
199199
<mat-step>
200200
<ng-template matStepLabel>Service Options</ng-template>
201201
<br />
202+
202203
<ng-container *ngIf="viewSchema && !subscriptionRequired">
203204
<ng-container formGroupName="config">
204205
<ng-container *ngIf="!isDatabase || !hasStandardFields">
@@ -487,6 +488,7 @@ <h4 class="text-center" style="color: black !important">
487488
[icon]="faCircleInfo"
488489
[matTooltip]="'services.controls.serviceType.tooltip' | transloco" />
489490
</mat-form-field>
491+
490492
<mat-form-field
491493
subscriptSizing="dynamic"
492494
class="dynamic-width"
@@ -502,6 +504,20 @@ <h4 class="text-center" style="color: black !important">
502504
[icon]="faCircleInfo"
503505
[matTooltip]="'services.controls.namespace.tooltip' | transloco" />
504506
</mat-form-field>
507+
508+
<!-- Excel Service Configuration -->
509+
<ng-container *ngIf="serviceForm.getRawValue().type === 'excel'">
510+
<mat-form-field appearance="outline" class="full-width">
511+
<mat-label>Storage Service *</mat-label>
512+
<mat-select formControlName="storageServiceId" required>
513+
<mat-option
514+
*ngFor="let service of availableFileServices"
515+
[value]="service.id">
516+
{{ service.label || service.name }}
517+
</mat-option>
518+
</mat-select>
519+
</mat-form-field>
520+
</ng-container>
505521
<mat-form-field
506522
subscriptSizing="dynamic"
507523
appearance="outline"

0 commit comments

Comments
 (0)