Skip to content

Commit

Permalink
fix: [OS-4] [OS-6] Allow users to modify end time and description of …
Browse files Browse the repository at this point in the history
…connection (#309)

* Frontend work on modifying connection description and ending time

* Update configuration files

* Revert package versions

* Separate code into components, update description save method

* Fix description save method

* Revert package-lock.json

* Add alert when modification is successful
  • Loading branch information
sartaj10 authored Mar 15, 2019
1 parent f3a9db2 commit 43c378e
Show file tree
Hide file tree
Showing 11 changed files with 666 additions and 134 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ public void modifyDescription(@RequestBody DescriptionModifyRequest request)
}
c.setDescription(request.getDescription());
connRepo.save(c);

}


Expand Down
1 change: 0 additions & 1 deletion frontend/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
"react",
"stage-1"
],

"plugins": ["transform-decorators-legacy", "lodash"]
}
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "OSCARS frontend",
"repository": {
"type": "git",
"url": "git://github.com/esnet/oscars-newtech.git"
"url": "git://github.com/esnet/oscars.git"
},
"dependencies": {
"bootstrap": "4.1.3",
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/main/js/components/details/detailsButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,9 +483,10 @@ class DetailsButtons extends Component {
{build}
{dismantle}
{release}
<br />
{specialHeader}
{regenerate}

<br />
{recoverSelect}
</ListGroup>
);
Expand Down
Loading

0 comments on commit 43c378e

Please sign in to comment.