From 198771913ff6b216bc9f28cbe47c7137b51afa57 Mon Sep 17 00:00:00 2001 From: Anthony Martin <38542602+anthony-c-martin@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:03:33 -0500 Subject: [PATCH] Fix issue 16047 --- .../deploy-pane/src/components/sections/WhatIfChangesView.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/vscode-bicep-ui/apps/deploy-pane/src/components/sections/WhatIfChangesView.tsx b/src/vscode-bicep-ui/apps/deploy-pane/src/components/sections/WhatIfChangesView.tsx index cb07c6c0673..f1dcc3547a9 100644 --- a/src/vscode-bicep-ui/apps/deploy-pane/src/components/sections/WhatIfChangesView.tsx +++ b/src/vscode-bicep-ui/apps/deploy-pane/src/components/sections/WhatIfChangesView.tsx @@ -47,6 +47,8 @@ export const WhatIfChangesView: FC = ({ changes }) => { }; function getWhatIfPropertyChanges(changes?: WhatIfPropertyChange[]) { + + console.log(changes); if (!changes) { return null; } @@ -58,12 +60,14 @@ function getWhatIfPropertyChanges(changes?: WhatIfPropertyChange[]) { Path Change Type + {filteredChanges.map((change) => ( {change.path} {change.propertyChangeType} ))} + ); }