Skip to content

Commit

Permalink
Merge pull request #8931 from GilbertCherrie/fix_optimization_table_t…
Browse files Browse the repository at this point in the history
…ranslations

Fixed optimization table translations
  • Loading branch information
Fryguy authored Oct 11, 2023
2 parents 9b34009 + fc351e4 commit 57c9798
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 57c9798

Please sign in to comment.