Skip to content

Commit

Permalink
Merge pull request #165 from Sanketika-Obsrv/user_ui_update
Browse files Browse the repository at this point in the history
fix: #OBS-I494: Dataset list text alignment
  • Loading branch information
HarishGangula authored Jan 10, 2025
2 parents fe33e19 + 2e0987d commit 0e9c8b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
flex: 1 1 auto;
overflow: hidden;
min-width: 0;
word-break: break-word !important;
}

.gridItemNoBorder {
Expand Down Expand Up @@ -136,4 +136,5 @@
justify-content: space-between;
align-items: center;
width: 100%;
flex-wrap: wrap;
}
2 changes: 1 addition & 1 deletion web-console-v2/src/pages/DatasetList/DatasetlistCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const DatasetlistCard: React.FC<DatasetlistCardProps> = ({
{label}
</Typography>
{key === 'status' ? (
<Typography variant="caption">
<Typography variant="caption" sx={{ textAlign: 'start' }}>
{getStatusLabel(String(dataset[key as keyof Dataset]))}
</Typography>
) : (
Expand Down

0 comments on commit 0e9c8b4

Please sign in to comment.