diff --git a/src/main/resources/public/js/getAndAddContracts.js b/src/main/resources/public/js/getAndAddContracts.js index 2ed059dc..b0db14d2 100644 --- a/src/main/resources/public/js/getAndAddContracts.js +++ b/src/main/resources/public/js/getAndAddContracts.js @@ -11,6 +11,9 @@ * but this a good practice since "$" is not "reserved" to jQuery. * Now "$" is just a function argument name and not the jQuery * alias anymore. It could named "foo" fo ex, thus making a call like foo("#contracts") valid. +* @todo #253:60min On frontend, in Contracts tab, after adding a new contract, we should add the new +* contract to contract table, instead of updating table by re-fetching all contracts again. +* Same logic should be applied to "markContractForRemove" and "restoreContract". */ (function getAndAddContracts($, contractsService, usersService, confirmDialog){ diff --git a/src/main/resources/public/js/wallets.js b/src/main/resources/public/js/wallets.js index 50a09201..c584ddce 100644 --- a/src/main/resources/public/js/wallets.js +++ b/src/main/resources/public/js/wallets.js @@ -139,7 +139,6 @@ function getProjectWallets() { * @param owner Owner of the repo/project. * @param name Name of the repo. * @param type Type of the wallet (fake or stripe). - * @todo #195#60min On frontend, enable wallet activation. Right now `activateWallet()` function is not used. */ function activateWallet(owner, name, type) { if(type == 'stripe') { diff --git a/src/main/resources/templates/contributor.html b/src/main/resources/templates/contributor.html index 914be60b..5acb3c40 100644 --- a/src/main/resources/templates/contributor.html +++ b/src/main/resources/templates/contributor.html @@ -384,7 +384,9 @@