Skip to content

Commit

Permalink
fix label
Browse files Browse the repository at this point in the history
  • Loading branch information
cekk committed Aug 23, 2023
1 parent 3f75cde commit ec74750
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,13 @@ const PauseTableField = ({ value, row }) => {

const onDeleteRow = deletedRow => {
let newValue = pause_table.filter((value, idx) => idx !== deletedRow);
console.log(newValue);
updateField({ row, id: 'pause_table', value: newValue });
};

return (
<div className="pause-table-wrapper">
<div>
<strong>{getTranslationFor('pause_table_label')}</strong>
<strong>{getTranslationFor('Pause table')}</strong>
</div>
<div>
{pause_table.length > 0 && (
Expand Down

0 comments on commit ec74750

Please sign in to comment.