File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1- **{{ ' @' . $editor } } ** updated **{{ $fieldName } } ** from **{{ $fromValue } } ** to **{{ $toValue } } **.
2-
3- @include (' github-project::md.field_types.' . $payload [' projects_v2_item' ][' field_type' ], compact (' payload' ) )
1+ @php
2+ $fieldName = $payload [' projects_v2_item' ][' field_name' ];
3+ $fromValue = $payload [' from' ][' name' ] ?? ' Unknown' ;
4+ $toValue = $payload [' to' ][' name' ] ?? ' Unknown' ;
5+ @endphp
6+ @include (
7+ ' github-project::md.field_types.' . $payload [' projects_v2_item' ][' field_type' ],
8+ compact (' fieldName' , ' fromValue' , ' toValue' )
9+ )
410
511@include (' github-project::md.shared.author' , compact (' payload' ) )
Original file line number Diff line number Diff line change 1+ **{{ $fieldName } } ** has been changed from **{{ $fromValue } } ** to **{{ $toValue } } **.
You can’t perform that action at this time.
0 commit comments