Skip to content

Commit

Permalink
[#227] Migrate renamed utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
palagdan committed Nov 27, 2024
1 parent 537f16b commit 71f9803
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/MainView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class MainView extends React.Component {

<Nav>
<ImpersonatorBadge />
<NavDropdown className="pr-0" id="logout" title={name}>
<NavDropdown className="pe-0" id="logout" title={name}>
<NavDropdown.Item onClick={() => this.onProfileClick()}>
{this.i18n("main.my-profile")}
</NavDropdown.Item>
Expand Down
2 changes: 1 addition & 1 deletion src/components/misc/FilterIndicator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import PropTypes from "prop-types";

const FilterIndicator = ({ filterValue }) => {
const { i18n } = useI18n();
const classes = classNames("ml-1", { invisible: sanitizeArray(filterValue).length === 0 });
const classes = classNames("ms-1", { invisible: sanitizeArray(filterValue).length === 0 });
return <FaFilter className={classes} title={i18n("filters.active.tooltip")} />;
};

Expand Down
2 changes: 1 addition & 1 deletion src/components/misc/SortIndicator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const SortIndicator = ({ direction }) => {
break;
}
return (
<span className="ml-1" title={i18n("table.sort.tooltip")}>
<span className="ms-1" title={i18n("table.sort.tooltip")}>
<Glyph />
</span>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/record/Records.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Records extends React.Component {
{showCreateButton ? (
<Button
id="records-create"
className="mr-1 action-button"
className="me-1 action-button"
variant="primary"
size="sm"
disabled={createRecordDisabled}
Expand Down

0 comments on commit 71f9803

Please sign in to comment.