diff --git a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/document-tab/document-tab.component.html b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/document-tab/document-tab.component.html index feb4527b..7b04a547 100644 --- a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/document-tab/document-tab.component.html +++ b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/document-tab/document-tab.component.html @@ -23,8 +23,8 @@ - {{ VIDEO_RENDITIONS_LABELS.RECOMPUTE_MISSING_ONLY }} - {{ VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL }} + {{ VIDEO_RENDITIONS_LABELS.RECOMPUTE_MISSING_ONLY }} + {{ VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL }} diff --git a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/document-tab/document-tab.component.ts b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/document-tab/document-tab.component.ts index 3faca0b5..a1c693d4 100644 --- a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/document-tab/document-tab.component.ts +++ b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/document-tab/document-tab.component.ts @@ -117,7 +117,7 @@ export class DocumentTabComponent implements OnInit, OnDestroy { ); this.inputForm.addControl( VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL_VIDEO_INFO_KEY, - new FormControl("true") + new FormControl("false") ); } if (this.isFeatureFullTextReindex()) { diff --git a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/folder-tab/folder-tab.component.html b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/folder-tab/folder-tab.component.html index 3404603c..6d595962 100644 --- a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/folder-tab/folder-tab.component.html +++ b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/folder-tab/folder-tab.component.html @@ -24,8 +24,8 @@ - {{VIDEO_RENDITIONS_LABELS.RECOMPUTE_MISSING_ONLY}} - {{VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL}} + {{VIDEO_RENDITIONS_LABELS.RECOMPUTE_MISSING_ONLY}} + {{VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL}} diff --git a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/folder-tab/folder-tab.component.ts b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/folder-tab/folder-tab.component.ts index cb44206a..0ceb7be2 100644 --- a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/folder-tab/folder-tab.component.ts +++ b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/folder-tab/folder-tab.component.ts @@ -139,7 +139,7 @@ export class FolderTabComponent implements OnInit, OnDestroy { ); this.inputForm.addControl( VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL_VIDEO_INFO_KEY, - new FormControl("true") + new FormControl("false") ); } diff --git a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/nxql-tab/nxql-tab.component.html b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/nxql-tab/nxql-tab.component.html index 46e08579..e228a88c 100644 --- a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/nxql-tab/nxql-tab.component.html +++ b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/nxql-tab/nxql-tab.component.html @@ -21,8 +21,8 @@ - {{VIDEO_RENDITIONS_LABELS.RECOMPUTE_MISSING_ONLY}} - {{VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL}} + {{VIDEO_RENDITIONS_LABELS.RECOMPUTE_MISSING_ONLY}} + {{VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL}} diff --git a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/nxql-tab/nxql-tab.component.ts b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/nxql-tab/nxql-tab.component.ts index e56ad99d..81529126 100644 --- a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/nxql-tab/nxql-tab.component.ts +++ b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/components/nxql-tab/nxql-tab.component.ts @@ -144,7 +144,7 @@ export class NXQLTabComponent implements OnInit, OnDestroy { ); this.inputForm.addControl( VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL_VIDEO_INFO_KEY, - new FormControl("true") + new FormControl("false") ); } if(this.isFeatureFullTextReindex()) { diff --git a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/generic-multi-feature-layout.mapping.ts b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/generic-multi-feature-layout.mapping.ts index d7468ccb..0bac6ef4 100644 --- a/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/generic-multi-feature-layout.mapping.ts +++ b/nuxeo-admin-console-web/angular-app/src/app/features/sub-features/generic-multi-feature-layout/generic-multi-feature-layout.mapping.ts @@ -226,7 +226,7 @@ export const featureMap = () => ({ bodyParam: { query: `${VIDEO_RENDITIONS_LABELS.FOLDER_QUERY}`, [VIDEO_RENDITIONS_LABELS.CONVERSION_NAME_KEY]: `{conversionNames}`, - recomputeVideoInfo: `{recomputeVideoInfo}`, + [VIDEO_RENDITIONS_LABELS.RECOMPUTE_ALL_VIDEO_INFO_KEY]: `{recomputeAllVideoInfo}`, }, requestHeaders: { "Content-Type": "application/x-www-form-urlencoded",