Skip to content

Commit

Permalink
chore: apply consistent naming to push analytics class names
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikThePendric authored Jan 24, 2024
1 parent 5186076 commit e36a0b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/DownloadMenu/GraphicsMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const GraphicsMenu = ({ hoverable, onDownload }) => {
icon={<IconImage24 color={colors.grey600} />}
label={i18n.t('Image (.png)')}
onClick={() => onDownload({ format: FILE_FORMAT_PNG })}
className="download-menuitemn"
className="push-analytics-download-menu-item"
/>
<MenuItemComponent
key="pdf"
Expand Down
2 changes: 1 addition & 1 deletion src/components/DownloadMenu/TableMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const TableMenu = ({ hoverable, onDownload }) => {
<MenuItemComponent
key="html"
label={i18n.t('HTML (.html)')}
className="download-menuitem"
className="push-analytics-download-menu-item"
onClick={() =>
onDownload({
type: DOWNLOAD_TYPE_TABLE,
Expand Down
2 changes: 1 addition & 1 deletion src/components/DownloadMenu/ToolbarDownloadDropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const ToolbarDownloadDropdown = () => {
<HoverMenuDropdown
label={i18n.t('Download')}
disabled={disabled}
className="download-dropdownmenu-button"
className="push-analytics-download-dropdown-menu-button"
>
<DownloadMenu
hoverable
Expand Down

0 comments on commit e36a0b3

Please sign in to comment.