Skip to content

Commit

Permalink
Merge pull request #105 from astronomer/hotfix
Browse files Browse the repository at this point in the history
Hotfix: EnvVarPage defaulting to Software
  • Loading branch information
fritz-astronomer authored Jun 7, 2024
2 parents d216a76 + 8782e13 commit eb12884
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion astronomer_starship/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.0.4"
__version__ = "2.0.5"


def get_provider_info():
Expand Down
2 changes: 2 additions & 0 deletions astronomer_starship/src/pages/EnvVarsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ EnvVarMigrateButton.propTypes = {
route: PropTypes.string.isRequired,
headers: PropTypes.objectOf(PropTypes.string),
existsInRemote: PropTypes.bool,
isAstro: PropTypes.bool.isRequired,
// eslint-disable-next-line react/forbid-prop-types
sendData: PropTypes.object.isRequired,
deploymentId: PropTypes.string,
Expand Down Expand Up @@ -189,6 +190,7 @@ export default function EnvVarsPage({ state, dispatch }) {
value: info.row.getValue('value'),
isSecret: false
}}
isAstro={state.isAstro}
deploymentId={state.deploymentId}
releaseName={state.releaseName}
/>
Expand Down

0 comments on commit eb12884

Please sign in to comment.