Skip to content

Commit

Permalink
fix(Operation/Details): Minified React error #31 [YTFRONT-4417]
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-efremoff committed Nov 1, 2024
1 parent 22879ac commit 6324642
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import MetaTable, {
TemplateTransferTask,
} from '../../../../../../components/MetaTable/MetaTable';
import CollapsibleTable from '../../../../../../components/CollapsibleTable/CollapsibleTable';
import Yson from '../../../../../../components/Yson/Yson';

import {
inputTableProps,
Expand Down Expand Up @@ -116,7 +117,7 @@ export default class Specification extends Component {
renderStartedBy({fields = [], command}) {
const items = fields.map((field) => ({
key: field.name,
value: field.value,
value: typeof field.value === 'object' ? <Yson value={field.value} /> : field.value,
}));

items.push({
Expand Down

0 comments on commit 6324642

Please sign in to comment.