Skip to content

Commit

Permalink
fix: have options.title override master
Browse files Browse the repository at this point in the history
  • Loading branch information
Caele committed Jan 13, 2021
1 parent 27ff553 commit 30868f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/nucleus/src/components/listbox/ListBoxInline.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export function ListBoxInline({ app, fieldIdentifier, stateName = '$', options =
<Grid item>
{showTitle && (
<Typography variant="h6" noWrap>
{!isMaster ? layout.title || fieldName : layout.qListObject.qDimensionInfo.qFallbackTitle}
{!isMaster ? layout.title || fieldName : layout.title || layout.qListObject.qDimensionInfo.qFallbackTitle}
</Typography>
)}
</Grid>
Expand Down

0 comments on commit 30868f1

Please sign in to comment.