Skip to content

Commit

Permalink
fixed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
JamalAlabdullah committed Jul 5, 2024
1 parent 6dce3ae commit 2543c7f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
}

.codeFragment {
overflow: auto;
overflow-y: hidden;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ const DataModelLookupValue = ({
<Binding
name={texts.readonlyDataModelPath}
binding={
<StudioCodeFragment className={classes.codeFragment}>{value.path}</StudioCodeFragment>
<StudioCodeFragment title={value.path} className={classes.codeFragment}>
{value.path}
</StudioCodeFragment>
}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 245px;
}

.duplicatedIdField {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@

.legendContent {
margin-left: var(--studio-expression-spacing);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
overflow: auto;
}

.deleteButton {
Expand Down

0 comments on commit 2543c7f

Please sign in to comment.