diff --git a/src/app/adf-services/df-service-details/df-paywall-modal.html b/src/app/adf-services/df-service-details/df-paywall-modal.html index d5925f29..078dfadf 100644 --- a/src/app/adf-services/df-service-details/df-paywall-modal.html +++ b/src/app/adf-services/df-service-details/df-paywall-modal.html @@ -1,3 +1,4 @@ +

Unlock Service

@@ -12,8 +13,7 @@

{{ 'paywall.hostedTrial' | transloco }}

{{ 'paywall.ossVersion' | transloco }}

- {{ 'paywall.signup' | transloco - }}{{ 'paywall.trial' | transloco }} > | {{ 'email' | transloco }}: info@dreamfactory.com{{ 'email' | transloco }}: info@dreamfactory.com

diff --git a/src/app/adf-user-management/df-password-reset/df-password-reset.component.html b/src/app/adf-user-management/df-password-reset/df-password-reset.component.html index ad49d609..3d34d358 100644 --- a/src/app/adf-user-management/df-password-reset/df-password-reset.component.html +++ b/src/app/adf-user-management/df-password-reset/df-password-reset.component.html @@ -13,8 +13,8 @@ (type === 'reset' ? 'resetPassword' : type === 'register' - ? 'registrationConfirmation' - : 'invitatonConfirmation') | transloco + ? 'registrationConfirmation' + : 'invitatonConfirmation') | transloco }} diff --git a/src/app/adf-user-management/services/df-password.service.ts b/src/app/adf-user-management/services/df-password.service.ts index 48e33754..355c8430 100644 --- a/src/app/adf-user-management/services/df-password.service.ts +++ b/src/app/adf-user-management/services/df-password.service.ts @@ -60,11 +60,9 @@ export class DfPasswordService { hasSecurityQuestion = false ) { return this.http - .post( - URLS.USER_PASSWORD, - data, - hasSecurityQuestion ? HTTP_OPTION_LOGIN_FALSE : HTTP_OPTION_RESET_TRUE - ) + .post< + SecurityQuestion | GenericSuccessResponse + >(URLS.USER_PASSWORD, data, hasSecurityQuestion ? HTTP_OPTION_LOGIN_FALSE : HTTP_OPTION_RESET_TRUE) .pipe( catchError(() => { return this.http.post( diff --git a/src/app/shared/components/df-dynamic-field/df-dynamic-field.component.html b/src/app/shared/components/df-dynamic-field/df-dynamic-field.component.html index afde76ea..b1d53cd7 100644 --- a/src/app/shared/components/df-dynamic-field/df-dynamic-field.component.html +++ b/src/app/shared/components/df-dynamic-field/df-dynamic-field.component.html @@ -21,8 +21,8 @@ schema.type === 'integer' ? 'number' : schema.type === 'password' - ? 'password' - : 'text' + ? 'password' + : 'text' " [attr.aria-label]="schema.label" /> {{ 'paywall.speakToHuman' | transloco }}

{{ 'phone' | transloco }}: +1 415-993-5877 | {{ 'email' | transloco }}: info@dreamfactory.com{{ 'email' | transloco }}: info@dreamfactory.com

diff --git a/src/app/shared/components/df-script-editor/df-script-editor.component.ts b/src/app/shared/components/df-script-editor/df-script-editor.component.ts index 624b14fc..b28d43f3 100644 --- a/src/app/shared/components/df-script-editor/df-script-editor.component.ts +++ b/src/app/shared/components/df-script-editor/df-script-editor.component.ts @@ -61,7 +61,7 @@ export class DfScriptEditorComponent implements OnInit { additionalParams: [ { key: 'group', - value: 'source control,file', + value: 'source control,file,database', }, ], }) @@ -109,9 +109,11 @@ export class DfScriptEditorComponent implements OnInit { } viewLatest() { - const filePath = `${this.storageServices.find( - service => service.id === this.storageServiceId.getRawValue() - )?.name}/${this.storagePath.getRawValue()}`; + const filePath = `${ + this.storageServices.find( + service => service.id === this.storageServiceId.getRawValue() + )?.name + }/${this.storagePath.getRawValue()}`; if (filePath.endsWith('.json')) { this.fileService .downloadJson(filePath) diff --git a/src/app/shared/components/df-side-nav/df-side-nav.component.html b/src/app/shared/components/df-side-nav/df-side-nav.component.html index 43fe0bb6..45f0ed49 100644 --- a/src/app/shared/components/df-side-nav/df-side-nav.component.html +++ b/src/app/shared/components/df-side-nav/df-side-nav.component.html @@ -162,4 +162,4 @@

- \ No newline at end of file + diff --git a/src/app/shared/components/df-verb-picker/df-verb-picker.component.ts b/src/app/shared/components/df-verb-picker/df-verb-picker.component.ts index 9b75b3ff..1592ae1a 100644 --- a/src/app/shared/components/df-verb-picker/df-verb-picker.component.ts +++ b/src/app/shared/components/df-verb-picker/df-verb-picker.component.ts @@ -115,10 +115,11 @@ export class DfVerbPickerComponent implements ControlValueAccessor, DoCheck { this.type === 'number' ? (selected || []).reduce((acc: number, val: number) => acc | val, 0) : this.type === 'verb_multiple' - ? ((selected || []).map( - (v: any) => this.verbs.find(vr => vr.value === v)?.altValue ?? '' - ) as Array) - : this.verbs.find(vr => vr.value === selected)?.altValue ?? ''; + ? ((selected || []).map( + (v: any) => + this.verbs.find(vr => vr.value === v)?.altValue ?? '' + ) as Array) + : this.verbs.find(vr => vr.value === selected)?.altValue ?? ''; this.onChange(total); }); }