Fix various bugs before 0.2.2 (#3118)
* Fix various bugs before 0.2.2 release * Additional fixes * More fixes * Fixes
This commit is contained in:
@ -111,9 +111,9 @@ export const SettingsObjectFieldPreview = ({
|
||||
{objectMetadataItem?.labelPlural}
|
||||
</StyledObjectName>
|
||||
{objectMetadataItem?.isCustom ? (
|
||||
<Tag color="orange" text="Custom" />
|
||||
<Tag color="orange" text="Custom" weight="medium" />
|
||||
) : (
|
||||
<Tag color="blue" text="Standard" />
|
||||
<Tag color="blue" text="Standard" weight="medium" />
|
||||
)}
|
||||
</StyledObjectSummary>
|
||||
<SettingsObjectFieldPreviewValueEffect
|
||||
|
||||
@ -79,9 +79,9 @@ export const SettingsAboutSection = ({
|
||||
{name}
|
||||
</StyledName>
|
||||
{isCustom ? (
|
||||
<StyledTag color="orange" text="Custom" />
|
||||
<StyledTag color="orange" text="Custom" weight="medium" />
|
||||
) : (
|
||||
<StyledTag color="blue" text="Standard" />
|
||||
<StyledTag color="blue" text="Standard" weight="medium" />
|
||||
)}
|
||||
<DropdownScope dropdownScopeId={dropdownScopeId}>
|
||||
<Dropdown
|
||||
|
||||
@ -51,9 +51,9 @@ export const SettingsObjectItemTableRow = ({
|
||||
</StyledNameTableCell>
|
||||
<TableCell>
|
||||
{objectItem.isCustom ? (
|
||||
<Tag color="orange" text="Custom" />
|
||||
<Tag color="orange" text="Custom" weight="medium" />
|
||||
) : (
|
||||
<Tag color="blue" text="Standard" />
|
||||
<Tag color="blue" text="Standard" weight="medium" />
|
||||
)}
|
||||
</TableCell>
|
||||
<TableCell align="right">
|
||||
|
||||
Reference in New Issue
Block a user