Skip to content

Commit 78adca2

Browse files
committed
Fix css alignment for n/a text
1 parent f346474 commit 78adca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/drawer/record/record-field.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export const RecordField: React.FC<RecordFieldProps> = ({
227227
}
228228
return child;
229229
})
230-
: emptyText()}
230+
: <Text className="text-muted record-field-value">{t('n/a')}</Text>}
231231
</Flex>
232232
);
233233
};

0 commit comments

Comments
 (0)