Skip to content

Commit

Permalink
[E] Only show version in admin footer
Browse files Browse the repository at this point in the history
  • Loading branch information
1aurend authored and zdavis committed Feb 26, 2024
1 parent e7aae72 commit efc24b2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/global/components/Footers/Parts/PoweredBy/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ class PoweredBy extends PureComponent {
? this.manifoldLinkProps
: {};

const version = this.props.settings?.attributes?.calculated?.manifoldVersion
?.version;
const version = this.props.withVersion
? this.props.settings?.attributes?.calculated?.manifoldVersion?.version
: null;

return (
<Styled.Wrapper
Expand Down

0 comments on commit efc24b2

Please sign in to comment.