Skip to content

Commit

Permalink
Fix user limits for invites (#7078)
Browse files Browse the repository at this point in the history
* fix user limits for invites

* changelog
  • Loading branch information
hotzenklotz authored May 15, 2023
1 parent 4b0eacc commit 7a9ff1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
- Fixed rare rendering bug for datasets with multiple layers and differing magnifications. [#7066](https://github.com/scalableminds/webknossos/pull/7066)
- Fixed a bug where duplicating annotations with Editable Mappings could lead to a server-side endless loop. [#7026](https://github.com/scalableminds/webknossos/pull/7026)
- Fixed the datasource-properties.json route for zarr-streaminge export of datasets that are not wkw/zarr. [#7065](https://github.com/scalableminds/webknossos/pull/7065)
- Fixed an issue where you could no longer invite users to your organization even though you had space left. [#7078](https://github.com/scalableminds/webknossos/pull/7078)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion frontend/javascripts/admin/onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export class InviteUsersModal extends React.Component<

render() {
const isInvitesDisabled =
this.props.currentUserCount + this.extractEmailAddresses().length >=
this.props.currentUserCount + this.extractEmailAddresses().length >
this.props.maxUserCountPerOrganization;

return (
Expand Down

0 comments on commit 7a9ff1a

Please sign in to comment.