Skip to content

Commit

Permalink
Merge branch 'release' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmz committed Nov 24, 2023
2 parents a0bb3f7 + 0ab7a2a commit 2f3d531
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Experimental

## [1.125.1] - 2023-11-24
### Fixed
- Missing post submission form on group pages.

## [1.125.0] - 2023-11-24
### Added
- The site administrator can now define a list of "privacy control groups" in
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reactive-pepyatka",
"version": "1.125.0",
"version": "1.125.1",
"description": "",
"main": "index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function Footer({ short }) {
return (
<footer className="footer">
<p role="navigation">
&copy; FreeFeed 1.125.0-beta (Nov 24, 2023)
&copy; FreeFeed 1.125.1-beta (Nov 24, 2023)
<br />
<Link to="/about">About</Link>
{' | '}
Expand Down
2 changes: 1 addition & 1 deletion src/components/user.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const UserHandler = (props) => {
<UserProfile
{...props.viewUser}
{...props.userActions}
canIPostHere={props.canIPostHere && allowToPost}
canIPostHere={props.viewUser.canIPostHere && allowToPost}
user={props.user}
sendTo={props.sendTo}
createPost={props.createPost}
Expand Down

0 comments on commit 2f3d531

Please sign in to comment.