diff --git a/js/electromagnet/view/ElectromagnetScreenView.ts b/js/electromagnet/view/ElectromagnetScreenView.ts index 52457592..c63d20dc 100644 --- a/js/electromagnet/view/ElectromagnetScreenView.ts +++ b/js/electromagnet/view/ElectromagnetScreenView.ts @@ -54,7 +54,7 @@ export default class ElectromagnetScreenView extends FELScreenView { const acPowerSupplyPanel = new ACPowerSupplyPanel( model.electromagnet.acPowerSupply, model.electromagnet.currentSourceProperty, tandem.createTandem( 'acPowerSupplyPanel' ) ); - //TODO https://github.com/phetsims/gas-properties/issues/231 Dynamically position dcPowerSupplyPanel and acPowerSupplyPanel + //TODO https://github.com/phetsims/faradays-electromagnetic-lab/issues/163 Dynamically position dcPowerSupplyPanel and acPowerSupplyPanel dcPowerSupplyPanel.left = this.layoutBounds.left + FELConstants.SCREEN_VIEW_X_MARGIN; dcPowerSupplyPanel.top = this.layoutBounds.top + FELConstants.SCREEN_VIEW_Y_MARGIN; acPowerSupplyPanel.left = this.layoutBounds.left + FELConstants.SCREEN_VIEW_X_MARGIN; diff --git a/js/transformer/view/TransformerScreenView.ts b/js/transformer/view/TransformerScreenView.ts index c4495ea4..ae846908 100644 --- a/js/transformer/view/TransformerScreenView.ts +++ b/js/transformer/view/TransformerScreenView.ts @@ -69,7 +69,7 @@ export default class TransformerScreenView extends FELScreenView { const acPowerSupplyPanel = new ACPowerSupplyPanel( electromagnet.acPowerSupply, electromagnet.currentSourceProperty, tandem.createTandem( 'acPowerSupplyPanel' ) ); - //TODO https://github.com/phetsims/gas-properties/issues/231 Dynamically position dcPowerSupplyPanel and acPowerSupplyPanel + //TODO https://github.com/phetsims/faradays-electromagnetic-lab/issues/163 Dynamically position dcPowerSupplyPanel and acPowerSupplyPanel dcPowerSupplyPanel.left = this.layoutBounds.left + FELConstants.SCREEN_VIEW_X_MARGIN; dcPowerSupplyPanel.top = this.layoutBounds.top + FELConstants.SCREEN_VIEW_Y_MARGIN; acPowerSupplyPanel.left = this.layoutBounds.left + FELConstants.SCREEN_VIEW_X_MARGIN;