Skip to content

Commit

Permalink
Append namespace to update hub request
Browse files Browse the repository at this point in the history
  • Loading branch information
gzurowski committed Oct 22, 2024
1 parent 7e09c2c commit b29ec15
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/Modals/EditHubModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ class EditHubModal extends Component {
if (isUniqueOrCurrent) {
const data = new FormData();
data.append("id", hub.id);
data.append("namespace", hub.namespace);
data.append("name", hubName ? hubName : hub.name);
if (hubDescription) {
data.append("description", hubDescription);
Expand Down

0 comments on commit b29ec15

Please sign in to comment.