Skip to content

Commit

Permalink
feat(rtl): Added RTL support for items in dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlovicnemanja committed Oct 31, 2023
1 parent 7c6b02a commit 1272447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/apps/search/components/ListItemInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ListItemInfo extends React.PureComponent<IPropsItemListInfo> {
className = classNames('item-info', {'item-info-reduced-rowheight': this.props.singleLine});
listItems = React.createElement(
'div',
{style: {flexGrow: 1, flexDirection: 'column', overflow: 'hidden'}},
{style: {flexGrow: 1, flexDirection: 'column', overflow: 'hidden'}, dir: "rtl"},

Check failure on line 57 in scripts/apps/search/components/ListItemInfo.tsx

View workflow job for this annotation

GitHub Actions / test

Strings must use singlequote
renderArea('firstLine', angular.extend({
singleLine: this.props.singleLine,
}, this.props), {className: 'line'}, this.props.customRender),
Expand Down

0 comments on commit 1272447

Please sign in to comment.