1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-23 17:56:28 +02:00

tabs inserted in jsx

This commit is contained in:
Cevo 2015-09-07 15:08:01 +02:00
parent 1dba9196e7
commit 6b9bf03941
3 changed files with 4 additions and 6 deletions

View File

@ -28,11 +28,9 @@ class ContractListActions {
return Q.Promise((resolve, reject) => {
OwnershipFetcher.makeContractPublic(contract)
.then((res) => {
console.log('Here is the result... ');
resolve(res);
})
.catch((err)=> {
console.log('Here we have an error');
console.logGlobal(err);
reject(err);
});

View File

@ -35,8 +35,8 @@ let ContractSettings = React.createClass({
console.log(contract);
ContractListActions.makeContractPublic(contract)
.then(( ) => ContractListActions.fetchContractList())
.catch((error)=>{console.log('Error ', error);
let notification = new GlobalNotificationModel('Service is unavailable', 'danger', 10000);
.catch((error)=>{
let notification = new GlobalNotificationModel(error, 'danger', 10000);
GlobalNotificationActions.appendGlobalNotification(notification);
});
},
@ -45,7 +45,7 @@ let ContractSettings = React.createClass({
ContractListActions.removeContract(contract)
.then(( ) => ContractListActions.fetchContractList())
.catch((error) => {console.log('Error', error);
let notification = new GlobalNotificationModel('Service is unavailable', 'danger', 10000);
let notification = new GlobalNotificationModel(error, 'danger', 10000);
GlobalNotificationActions.appendGlobalNotification(notification);
});
},

View File

@ -24,7 +24,7 @@ let OwnershipFetcher = {
},
makeContractPublic(contractObj){
return requests.put('ownership_contract', { body: contractObj, contract_id: contractObj.id });
return requests.put('ownership_csontract', { body: contractObj, contract_id: contractObj.id });
},
deleteContract(contractObj){