feat: Enhance Dataset Edit Page with Unsaved Changes Indicator and Improved Structure
Some checks failed
build.yaml / feat: Enhance Dataset Edit Page with Unsaved Changes Indicator and Improved Structure (push) Failing after 0s
Some checks failed
build.yaml / feat: Enhance Dataset Edit Page with Unsaved Changes Indicator and Improved Structure (push) Failing after 0s
- Added a progress indicator for unsaved changes at the top of the dataset edit page. - Enhanced the title section with a dataset status badge and improved layout. - Introduced collapsible sections for better organization of form fields. - Improved notifications for success/error messages. - Refactored form fields into distinct sections: Basic Information, Licenses, Titles, Descriptions, Creators & Contributors, Additional Metadata, Geographic Coverage, and Files. - Enhanced loading spinner with a more visually appealing overlay. - Added new project validation logic in the backend with create and update validators.
This commit is contained in:
parent
f39fe75340
commit
3d8f2354cb
9 changed files with 863 additions and 625 deletions
|
|
@ -143,7 +143,7 @@ const getProjectColor = (index) => {
|
|||
:class="getProjectColor(index)"
|
||||
:title="project.label"
|
||||
>
|
||||
{{ truncate(project.label, 25) }}
|
||||
{{ truncate(project.label, 30) }}
|
||||
</span>
|
||||
<!-- </Link> -->
|
||||
</td>
|
||||
|
|
@ -152,7 +152,7 @@ const getProjectColor = (index) => {
|
|||
class="text-gray-700 dark:text-gray-300 font-mono text-sm"
|
||||
:title="project.name"
|
||||
>
|
||||
{{ truncate(project.name, 30) }}
|
||||
{{ truncate(project.name, 40) }}
|
||||
</span>
|
||||
</td>
|
||||
<td v-if="can.edit || can.delete" class="before:hidden lg:w-1 whitespace-nowrap">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue