Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion react/src/components/AliasedImageDoubleTags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const AliasedImageDoubleTags: React.FC<AliasedImageDoubleTagsProps> = ({
return _.isEqual(
aliasedTag,
preserveDotStartCase(tag.key + tagValue),
) ? (
) || isCustomized ? (
<DoubleTag
key={tag.key}
highlightKeyword={highlightKeyword}
Expand Down
2 changes: 1 addition & 1 deletion react/src/components/ImageEnvironmentSelectFormItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ const ImageEnvironmentSelectFormItems: React.FC<
return _.isEqual(
aliasedTag,
preserveDotStartCase(tag.key + tagValue),
) ? (
) || isCustomized ? (
<DoubleTag
key={tag.key}
highlightKeyword={versionSearch}
Expand Down
2 changes: 1 addition & 1 deletion react/src/components/ImageList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const ImageList: React.FC<{ style?: React.CSSProperties }> = ({ style }) => {
return _.isEqual(
aliasedTag,
preserveDotStartCase(tag.key + tagValue),
) ? (
) || isCustomized ? (
<DoubleTag
key={tag.key}
highlightKeyword={imageSearch}
Expand Down
4 changes: 2 additions & 2 deletions react/src/components/ImageTags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export const ImageTags: React.FC<ImageTagsProps> = ({
const [, { getTags, tagAlias }] = useBackendAIImageMetaData();
const tags = getTags(tag, labels);
return (
<>
<React.Fragment {...props}>
{_.map(tags, (tag: { key: string; value: string }, index) => {
const isCustomized = tag.key === 'Customized';
const aliasedTag = tagAlias(tag.key + tag.value);
Expand Down Expand Up @@ -200,6 +200,6 @@ export const ImageTags: React.FC<ImageTagsProps> = ({
</Tag>
);
})}
</>
</React.Fragment>
);
};
2 changes: 1 addition & 1 deletion react/src/components/SessionLauncherPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const SessionLauncherPreview: React.FC<{
return _.isEqual(
aliasedTag,
preserveDotStartCase(tag.key + tagValue),
) ? (
) || isCustomized ? (
<DoubleTag
key={tag.key}
values={[
Expand Down