-
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/DefaultViewHook.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/DefaultViewHook.svelte
new file mode 100644
index 0000000000..5dc692d47b
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/DefaultViewHook.svelte
@@ -0,0 +1,69 @@
+
+
+
+
+{#if isEnabled}
+
+
+
+
+
+
+{/if}
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/entitytemplates/EntryContainer.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/EntryContainer.svelte
similarity index 100%
rename from Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/entitytemplates/EntryContainer.svelte
rename to Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/EntryContainer.svelte
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/ExtensionEntries.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/ExtensionEntries.svelte
new file mode 100644
index 0000000000..040030b681
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/ExtensionEntries.svelte
@@ -0,0 +1,55 @@
+
+{#if selectedExtensions && selectedExtensions.length > 0}
+
+
+
+
+
+
Extension Template
+
Reference Type
+
+
+ {#each selectedExtensions as extension, i}
+
+
+
+
+
+
+
+
+ {/each}
+
+
+
+{/if}
+
+
+
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/ExtensionEntry.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/ExtensionEntry.svelte
new file mode 100644
index 0000000000..75fa145270
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/ExtensionEntry.svelte
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+ onChangeFn(e)}
+ />
+
+
+ Unique
+
+
+
+
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/Hook.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/Hook.svelte
index 0db7172105..7e76dd54ba 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/Hook.svelte
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/Hook.svelte
@@ -8,9 +8,17 @@
-->
{#if isEnabled}
- {displayName.toUpperCase()}
+
-{/if}
-
+
+
+{/if}
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/View.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/View.svelte
index 8c4aa2b360..7db0100a02 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/View.svelte
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/View.svelte
@@ -16,6 +16,7 @@
onMount(async () => {
//load javascript from server
const urlscript = host + start + '?id=' + id + '&&version=' + version;
+ console.log("🚀 ~ urlscript:", urlscript)
import(urlscript).then((resp) => {
ExtComponent = resp.default;
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/customComponents/DateRangePicker_0.1/component.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/customComponents/DateRangePicker_0.1/component.svelte
index 16ae33fe85..5086c338d7 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/customComponents/DateRangePicker_0.1/component.svelte
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/customComponents/DateRangePicker_0.1/component.svelte
@@ -5,7 +5,7 @@
import SveltyPicker, { } from 'svelty-picker';
//import { en, de } from 'svelty-picker/dist/i18n';
- let componentName: string = 'DateRangePicker_0.1';
+ let componentName: string = 'date_range_picker_v1.0.0';
export let label: string;
export let anchor: string;
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/customComponents/componentCatalog.ts b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/customComponents/componentCatalog.ts
index 177ca245d8..6f05599ff4 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/customComponents/componentCatalog.ts
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/customComponents/componentCatalog.ts
@@ -3,7 +3,7 @@ import terminologyService from './TerminologyService_0.1/component.svelte';
import TextField from './TextField_0.1/component.svelte';
export const customComponentsCatalog: any = {
- 'DateRangePicker_0.1': {
+ 'date_range_picker_v1.0.0': {
component: dateRangepicker},
'terminology_v2.2.26': {
component: terminologyService},
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/datadescription/Show.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/datadescription/Show.svelte
index 1154428e07..33703142e8 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/datadescription/Show.svelte
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/datadescription/Show.svelte
@@ -3,7 +3,6 @@
import Header from './ShowHeader.svelte';
import { Table } from '@bexis2/bexis2-core-ui';
import type { TableConfig } from '@bexis2/bexis2-core-ui';
- import { dataset_dev } from 'svelte/internal';
import { writable } from 'svelte/store';
import NameTableCol from './NameTableCol.svelte';
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/Form.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/entityTemplate/Form.svelte
similarity index 100%
rename from Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/Form.svelte
rename to Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/entityTemplate/Form.svelte
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/InputEntry.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/entityTemplate/InputEntry.svelte
similarity index 100%
rename from Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/InputEntry.svelte
rename to Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/entityTemplate/InputEntry.svelte
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/List.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/entityTemplate/List.svelte
similarity index 85%
rename from Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/List.svelte
rename to Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/entityTemplate/List.svelte
index b5579674d0..ccb7435faa 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/List.svelte
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/components/entityTemplate/List.svelte
@@ -1,5 +1,5 @@
+
+
\ No newline at end of file
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Permission.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Permission.svelte
new file mode 100644
index 0000000000..6de4babd56
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Permission.svelte
@@ -0,0 +1,26 @@
+
+
+
\ No newline at end of file
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Publish.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Publish.svelte
new file mode 100644
index 0000000000..6de4babd56
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Publish.svelte
@@ -0,0 +1,26 @@
+
+
+
\ No newline at end of file
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Validation.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Validation.svelte
index 4240ddaa83..30fc28c976 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Validation.svelte
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Validation.svelte
@@ -29,8 +29,7 @@
let model: ValidationModel | null;
$: model;
- onMount(async () => {
- latestFileUploadDate.subscribe((s) => {
+ latestFileUploadDate.subscribe((s) => {
if (s > 0) {
console.log(
'🚀 ~ file: Validation.svelte:37 ~ onMount ~ latestFileUploadDate:',
@@ -39,6 +38,7 @@
reload('latestFileUploadDate');
}
});
+
latestDataDescriptionDate.subscribe((s) => {
if (s > 0) {
console.log(
@@ -48,6 +48,7 @@
reload('latestDataDescriptionDate');
}
});
+
latestFileReaderDate.subscribe((s) => {
if (s > 0) {
console.log(
@@ -57,22 +58,26 @@
reload('latestFileReaderDate');
}
});
+
latestSubmitDate.subscribe((s) => {
if (s > 0) {
- console.log(
- '🚀 ~ file: Validation.svelte:49 ~ onMount ~ latestSubmitDate:',
- $latestSubmitDate
- );
+ // console.log(
+ // '🚀 ~ file: Validation.svelte:49 ~ onMount ~ latestSubmitDate:',
+ // $latestSubmitDate
+ // );
//reload('latestSubmitDate');
}
});
+
+ onMount(async () => {
+
});
async function reload(type) {
model = null;
model = await getHookStart(start, id, version);
console.log('validation end', model);
- latestValidationDate.set(Date.now());
+ //latestValidationDate.set(Date.now());
}
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/EntityTemplate.ts b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/EntityTemplate.ts
index a66fb7e2fd..c02e092d2e 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/EntityTemplate.ts
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/EntityTemplate.ts
@@ -11,6 +11,8 @@ export interface EntityTemplateModel {
metadataInvalidSaveMode: boolean;
hasDatastructure: boolean;
datastructureList: number[];
+ hasExtension: boolean;
+ extensionList: extensionType[];
allowedFileTypes: string[];
disabledHooks: string[];
notificationGroups: number[];
@@ -26,3 +28,19 @@ export interface permissionsType {
viewEdit: number[];
view: number[];
}
+
+export class extensionType {
+ templateId: number;
+ referenceType: string;
+ unique: boolean;
+
+ public constructor() {
+ this.templateId = -1;
+ this.referenceType = '';
+ this.unique = false;
+ }
+}
+
+
+
+
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/Hook.ts b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/Hook.ts
new file mode 100644
index 0000000000..8cdfa85684
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/Hook.ts
@@ -0,0 +1,25 @@
+export interface HookModel {
+ name: string;
+ displayName: string;
+ status: HookStatus;
+ mode: HookMode;
+ entity: string;
+ module: string;
+ place: string;
+ start: string;
+ description: string;
+}
+
+export enum HookStatus {
+ Disabled = 0,
+ AccessDenied = 1,
+ Open = 2,
+ Ready = 3,
+ Exist = 4,
+ Inactive = 5
+}
+
+export enum HookMode {
+ view = 0,
+ edit = 1
+}
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/View.ts b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/View.ts
index 79132d2f41..351b20317e 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/View.ts
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/models/View.ts
@@ -1,33 +1,157 @@
-export interface ViewModel {
+
+import type { HookModel } from "./Hook";
+
+export interface ViewModel extends ApiDatasetModel {
+ settings: ViewSettings;
+ hasData: boolean;
+ count: number;
+ isValid: boolean;
+ downloadAccess: boolean;
+ requestExist: boolean;
+ requestAble: boolean;
+ hasRequestRight: boolean;
+ labels: { [key: string]: string; };
+}
+
+export interface ViewSettings {
+ useTags: boolean;
+ useMinor: boolean;
+ dataAggrement: string;
+ hooks: HookModel[];
+}
+
+export interface ApiDatasetModel {
+ id: number;
+ version: number;
+ versionId: number;
+ title: string;
+ description: string;
+ dataStructureId: number;
+ metadataStructureId: number;
+ entityTemplateId: number;
+ isPublic: boolean;
+ publicationDate: string;
+ additionalInformations: { [key: string]: string; };
+ parties: { [key: string]: { [key: string]: string; }; };
+ versionDate: string;
+ names: any;
+ links: LinksOverview;
+}
+
+export interface LinksOverview {
+ from: ReferenceModel[];
+ to: ReferenceModel[];
+}
+
+export interface ApiDatasetAttachmentsModel {
+ datasetId: number;
+ attachments: ApiSimpleAttachmentModel[];
+}
+
+export interface Citator {
+ firstName: string;
+ lastName: string;
+}
+
+export interface ApiSimpleAttachmentModel {
+ id: number;
+ name: string;
+ mimeType: string;
+}
+
+export interface ReferenceModel {
+ refId: number;
+ target: ReferenceElementModel;
+ source: ReferenceElementModel;
+ context: string;
+ referenceType: string;
+ linkType: string;
+ category: string;
+}
+
+export interface ReferenceElementModel {
+ id: number;
+ version: number;
+ typeId: number;
+ type: string;
+ title: string;
+ latestVersion: boolean;
+}
+
+
+
+export interface ApiDatasetModel {
id: number;
- versionId: number;
version: number;
+ versionId: number;
title: string;
- hooks: Hook[];
-}
-
-export interface Hook {
- name: string;
- displayName: string;
- status: HookStatus;
- mode: HookMode;
- entity: string;
- module: string;
- place: string;
- start: string;
description: string;
+ dataStructureId: number;
+ metadataStructureId: number;
+ isPublic: boolean;
+ publicationDate: string;
+ additionalInformations: { [key: string]: string; };
+ parties: { [key: string]: { [key: string]: string; }; };
+ versionDate: string;
+ names: any;
+ links: LinksOverview;
+}
+
+export interface LinksOverview {
+ from: ReferenceModel[];
+ to: ReferenceModel[];
+}
+
+export interface ReferenceModel {
+ refId: number;
+ target: ReferenceElementModel;
+ source: ReferenceElementModel;
+ context: string;
+ referenceType: string;
+ linkType: string;
+ category: string;
+}
+
+export interface ReferenceElementModel {
+ id: number;
+ version: number;
+ typeId: number;
+ type: string;
+ title: string;
+ latestVersion: boolean;
+}
+
+
+export enum ReadCitationFormat {
+ APA,
+ Text,
+ Default
+}
+
+export interface CitationModel {
+ format: ReadCitationFormat;
+ data: CitationDataModel;
}
-export enum HookStatus {
- Disabled = 0,
- AccessDenied = 1,
- Open = 2,
- Ready = 3,
- Exist = 4,
- Inactive = 5
+export enum CitationFormat {
+ APA,
+ RIS,
+ Text,
+ Bibtex
}
-export enum HookMode {
- view = 0,
- edit = 1
+export interface CitationDataModel {
+ title: string;
+ version: string;
+ tag: string;
+ projects: string[];
+ year: string;
+ dOI: string;
+ uRL: string;
+ authors: string[];
+ entryType: string;
+ entityName: string;
+ publisher: string;
+ keyword: string;
+ note: string;
}
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/+page.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/+page.svelte
index bc459e6c58..f2f1586433 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/+page.svelte
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/create/+page.svelte
@@ -1,6 +1,6 @@
-
-
- {#await load()}
-
- {:then a}
- {#if model && model.hooks && datasethooks && addtionalhooks && hookStatusList}
-
-
-
+ {#if entityTemplate}
+
+
+ {#if entityTemplate.hasExtension}
+
-
- {:else}
-
- {/if}
- {:catch error}
-
- {/await}
-
+ {:else}
+
+ {/if}
+
+ {/if}
+
-
+
\ No newline at end of file
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/AdvancedEntity.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/AdvancedEntity.svelte
new file mode 100644
index 0000000000..980aa3d143
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/AdvancedEntity.svelte
@@ -0,0 +1,101 @@
+
+
+
+
+ {entity} {title}
+
+
+
+ {#each extensions as ext (ext.id)}
+
+ {ext.title}
+
+
+
+ {/each}
+
+
+ +
+
+
+
+
+ {#if tabSet === 0}
+
+ {:else if tabSet === 100}
+
+ {/if}
+
+ {#each extensions as ext (ext.id)}
+
+ {#if tabSet === ext.id}
+
+
+
+
+
+
+ {/if}
+ {/each}
+
+
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/Entity.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/Entity.svelte
new file mode 100644
index 0000000000..7dc6bb51fa
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/Entity.svelte
@@ -0,0 +1,251 @@
+
+ {#await load()}
+
+ {:then a}
+ {#if model && model.hooks && datasethooks && addtionalhooks && hookStatusList}
+
+
+
+
+
+
+ {:else}
+
+ {/if}
+ {:catch error}
+
+ {/await}
+
+
+
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/ExtensionCreation.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/ExtensionCreation.svelte
new file mode 100644
index 0000000000..cba9cc7ea5
--- /dev/null
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/ExtensionCreation.svelte
@@ -0,0 +1,83 @@
+
+
+
+
+ {#await load()}
+
+
+
+ {:then result}
+
+
+
+ {#if selected && isOpen}
+
+ {:catch error}
+
+ {/await}
+
+
diff --git a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/Header.svelte b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/Header.svelte
index 19112dceeb..ff6014f9bc 100644
--- a/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/Header.svelte
+++ b/Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/routes/edit/Header.svelte
@@ -28,5 +28,12 @@
View
+