File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/[locale]/dashboard/[entityType]/[entitySlug]/dataset/[id]/edit/components Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -506,7 +506,7 @@ export function EditMetadata({ id }: { id: string }) {
506506 key = "description"
507507 multiline = { 4 }
508508 name = "description"
509- label = "Description*"
509+ label = "Description *"
510510 value = { formData . description }
511511 helpText = "Character limit: 1000"
512512 onChange = { ( e ) => handleChange ( 'description' , e ) }
@@ -516,7 +516,7 @@ export function EditMetadata({ id }: { id: string }) {
516516
517517 < Combobox
518518 displaySelected
519- label = "Sectors*"
519+ label = "Sectors *"
520520 list = { getSectorsList . data ?. sectors ?. map (
521521 ( item : TypeSector ) => {
522522 return { label : item . name , value : item . id } ;
@@ -537,7 +537,7 @@ export function EditMetadata({ id }: { id: string }) {
537537 value : item . id ,
538538 } ;
539539 } ) }
540- label = "Tags*"
540+ label = "Tags *"
541541 creatable
542542 onChange = { ( value ) => {
543543 handleChange ( 'tags' , value ) ;
You can’t perform that action at this time.
0 commit comments