Skip to content

Commit 3a20336

Browse files
authored
Merge pull request #384 from CivicDataLab/fix/collabrative-card
Description size
2 parents 472f2d6 + af5c3ea commit 3a20336

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

app/[locale]/(user)/search/components/UnifiedListingComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,7 @@ const UnifiedListingComponent: React.FC<UnifiedListingProps> = ({
10201020
size="large"
10211021
className={getTypeButtonClass('aimodel')}
10221022
>
1023-
AI Insights
1023+
AI Models
10241024
{displayTypeCounts.aimodel !== undefined && (
10251025
<span className="text-xs ml-1">
10261026
({displayTypeCounts.aimodel || 0})

app/[locale]/dashboard/[entityType]/[entitySlug]/aimodels/edit/[id]/publish/page.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ export default function PublishPage() {
393393
{meta.label}:
394394
</Text>
395395
<Text
396-
variant="bodyMd"
396+
variant="bodyLg"
397397
className="lg:basis-4/5"
398398
>
399399
{meta.value}
@@ -407,11 +407,12 @@ export default function PublishPage() {
407407
<Text className="lg:basis-1/6" variant="bodyMd">
408408
Description:
409409
</Text>
410-
<div className="lg:basis-4/5">
410+
411+
<Text variant="bodyMd" className="lg:basis-4/5">
411412
<RichTextRenderer
412413
content={model.description}
413414
/>
414-
</div>
415+
</Text>
415416
</div>
416417
)}
417418

app/[locale]/dashboard/[entityType]/[entitySlug]/dataset/[id]/edit/components/EditMetadata.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,8 @@ export function EditMetadata({ id }: { id: string }) {
865865
value: item.id,
866866
}))}
867867
key={`tags-${getTagsList.data?.tags?.length}`} // forces remount on change
868-
label="Tags *"
868+
label="Tags"
869+
requiredIndicator
869870
creatable
870871
onChange={(value) => {
871872
setIsTagsListUpdated(true);

0 commit comments

Comments
 (0)