Skip to content

Commit

Permalink
DefaultView (blocks disabled): Show field name as tip on hover of lab…
Browse files Browse the repository at this point in the history
…el (#4598)
  • Loading branch information
ksuess committed Mar 23, 2023
1 parent 4e800aa commit fbd4fe5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions news/4598.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DefaultView (view of fields for content types with blocks disabled): Show field name as tip on hover of label. @ksuess
2 changes: 1 addition & 1 deletion src/components/theme/View/DefaultView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const DefaultView = (props) => {
return f !== 'title' ? (
<Grid celled="internally" key={key}>
<Grid.Row>
<Label>{field.title}:</Label>
<Label title={field.id}>{field.title}:</Label>
</Grid.Row>
<Grid.Row>
<Segment basic>
Expand Down

0 comments on commit fbd4fe5

Please sign in to comment.