Skip to content

Commit

Permalink
Fixed optimization table translations
Browse files Browse the repository at this point in the history
  • Loading branch information
GilbertCherrie committed Oct 11, 2023
1 parent cf29c3a commit fc351e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/javascript/components/data-tables/optimization/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ const convertHeader = (headerItems) => headerItems.map((item) => ({ key: item[0]

/** Attributes needed for a button. */
const buttonData = (item) => ({
alt: 'Queue Report',
alt: __('Queue Report'),
disabled: false,
is_button: true,
onclick: `miqQueueReport(${item.id});`,
text: 'Queue Report',
title: 'Queue Report',
text: __('Queue Report'),
title: __('Queue Report'),
});

/** Function to generate the values of the attribute cell for an item in rows. */
Expand Down

0 comments on commit fc351e4

Please sign in to comment.