From 939baec1a8dfe7a5afd75541de482b1f95eb146d Mon Sep 17 00:00:00 2001 From: Manuel Wiedenmann Date: Sat, 7 Apr 2018 15:28:57 +0200 Subject: [PATCH] Add alert message after saved --- app/components/add-contributor/component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/add-contributor/component.js b/app/components/add-contributor/component.js index bf9dc3b..13c83da 100644 --- a/app/components/add-contributor/component.js +++ b/app/components/add-contributor/component.js @@ -16,7 +16,6 @@ export default Component.extend({ github_username: null, github_uid: null, wiki_username: null, - profileHash: null, isCore: false, }, @@ -61,6 +60,7 @@ export default Component.extend({ saved.then(() => { this.reset(); window.scroll(0,0); + window.alert('Contributor added.'); }); } }