diff --git a/app/react-tools/react2angular.tsx b/app/react-tools/react2angular.tsx index f00ebb593..59e11d733 100644 --- a/app/react-tools/react2angular.tsx +++ b/app/react-tools/react2angular.tsx @@ -38,7 +38,16 @@ export function react2angular[]>( Component: React.ComponentType, propNames: U & ([PropNames] extends [U[number]] ? unknown : PropNames) ): IComponentOptions & { name: string } { - const bindings = Object.fromEntries(propNames.map((key) => [key, '<'])); + const bindings = Object.fromEntries( + propNames.map((key) => { + // use two way binding for errors, to avoid shifting the layout from errors going between undefined <-> some value when using inputs. + // See https://portainer.atlassian.net/browse/EE-6570 for more context + if (key === 'errors') { + return [key, '=']; + } + return [key, '<']; + }) + ); return { bindings,