aboutsummaryrefslogtreecommitdiff
path: root/src/app/create-identity/create-identity.component.ts
diff options
context:
space:
mode:
authorPhil <phil.buschmann@tum.de>2018-06-24 02:24:43 +0200
committerPhil <phil.buschmann@tum.de>2018-06-24 02:24:43 +0200
commit6c6a674e02d3f4460dbcfa049ba717873895dbde (patch)
tree53d725ad66e9720abe19b9dec133f714084160bd /src/app/create-identity/create-identity.component.ts
parent6929f530e36335b5c96f13e9dd7e7a25376408ed (diff)
downloadgnunet-webui-6c6a674e02d3f4460dbcfa049ba717873895dbde.tar.gz
gnunet-webui-6c6a674e02d3f4460dbcfa049ba717873895dbde.zip
Update design and fix minor bugs
Diffstat (limited to 'src/app/create-identity/create-identity.component.ts')
-rw-r--r--src/app/create-identity/create-identity.component.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/create-identity/create-identity.component.ts b/src/app/create-identity/create-identity.component.ts
index c71239a..61224a0 100644
--- a/src/app/create-identity/create-identity.component.ts
+++ b/src/app/create-identity/create-identity.component.ts
@@ -11,14 +11,14 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */ 17 */
18/** 18/**
19 * @author Philippe Buschmann 19 * @author Philippe Buschmann
20 * @file src/app/create-identity/create-identity.component.ts 20 * @file src/app/create-identity/create-identity.component.ts
21 * @brief 21 * @brief
22 * 22 *
23 */ 23 */
24 24
@@ -34,9 +34,9 @@ import { MessagesService } from '../messages.service';
34}) 34})
35export class CreateIdentityComponent implements OnInit { 35export class CreateIdentityComponent implements OnInit {
36 36
37 private input_text: string = ''; 37 input_text: string = '';
38 private json: any = {'name':''}; 38 private json: any = {'name':''};
39 private is_free:boolean = true; 39 is_free:boolean = true;
40 40
41 constructor(private apiService: ApiService, 41 constructor(private apiService: ApiService,
42 private message: MessagesService, 42 private message: MessagesService,