Skip to content

Commit 87a7b83

Browse files
authored
Merge pull request #2426 from BEXIS2/1013-refactoring-metadata-edit
#2375 add ids to menu and hide beta edit metadata button
2 parents 4043c7a + bc1e0c6 commit 87a7b83

14 files changed

Lines changed: 33 additions & 31 deletions

File tree

Components/IO/BExIS.Io/IoHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static string GetFileName(FileType type, long datasetId, int versionNr,
6868

6969
break;
7070
case FileType.PrimaryDataFiles:
71-
downloadName = string.Format("{0}_{1}_v{2}_data_{3}", appName, datasetId, versionOrTagLabel, title);
71+
downloadName = string.Format("{0}_{1}_{2}_data_{3}", appName, datasetId, versionOrTagLabel, title);
7272
break;
7373
case FileType.Attachments:
7474
downloadName = string.Format("{0}_{1}_{2}_attachment_{3}", appName, datasetId, versionOrTagLabel, title);

Console/BExIS.Web.Shell.Svelte/package-lock.json

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

Console/BExIS.Web.Shell.Svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
},
5353
"type": "module",
5454
"dependencies": {
55-
"@bexis2/bexis2-core-ui": "0.4.74",
55+
"@bexis2/bexis2-core-ui": "0.4.75",
5656
"@sveltejs/adapter-static": "3.0.2",
5757
"buffer": "6.0.3",
5858
"gray-matter": "4.0.3",

Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/package-lock.json

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

Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
"type": "module",
5353
"dependencies": {
54-
"@bexis2/bexis2-core-ui": "0.4.74",
54+
"@bexis2/bexis2-core-ui": "0.4.75",
5555
"@bexis2/bexis2-rpm-ui": "0.3.0",
5656
"@floating-ui/dom": "1.6.8",
5757
"@fortawesome/free-solid-svg-icons": "6.6.0",

Console/BExIS.Web.Shell/Areas/DCM/BExIS.Modules.Dcm.UI.Svelte/src/lib/hooks/Metadata.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@
7474
<button class="btn btn-sm variant-filled-secondary flex-none" on:click={editOldFn}
7575
><Fa icon={faPen} /><span class="pl-1">Edit</span></button
7676
>
77-
<button class="btn btn-sm variant-filled-secondary flex-none" on:click={editFn}
77+
<!-- <button class="btn btn-sm variant-filled-secondary flex-none" on:click={editFn}
7878
><Fa icon={faPen} /><span class="pl-1">Edit (beta)</span></button
79-
>
79+
> -->
8080
</div>
8181
</div>
8282
{#if open}

Console/BExIS.Web.Shell/Areas/DDM/BExIS.Modules.Ddm.UI.Svelte/package-lock.json

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

Console/BExIS.Web.Shell/Areas/DDM/BExIS.Modules.Ddm.UI.Svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"type": "module",
5252
"dependencies": {
53-
"@bexis2/bexis2-core-ui": "0.4.74",
53+
"@bexis2/bexis2-core-ui": "0.4.75",
5454
"@floating-ui/dom": "1.6.8",
5555
"@fortawesome/free-solid-svg-icons": "6.6.0",
5656
"@sveltejs/adapter-static": "3.0.2",

Console/BExIS.Web.Shell/Areas/DIM/BExIS.Modules.Dim.UI.Svelte/package-lock.json

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

Console/BExIS.Web.Shell/Areas/DIM/BExIS.Modules.Dim.UI.Svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"type": "module",
5252
"dependencies": {
53-
"@bexis2/bexis2-core-ui": "0.4.74",
53+
"@bexis2/bexis2-core-ui": "0.4.75",
5454
"@floating-ui/dom": "1.6.8",
5555
"@fortawesome/free-solid-svg-icons": "6.6.0",
5656
"@sveltejs/adapter-static": "3.0.2",

0 commit comments

Comments
 (0)