You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2017/10/20 13:42:37 UTC

[kibble] 01/03: make it obvious that we're working with the default Org

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit f20915d861e740b8436f9be8f8bac20f267eaf78
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Fri Oct 20 15:40:52 2017 +0200

    make it obvious that we're working with the default Org
---
 ui/js/coffee/kibble_organisation.coffee | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ui/js/coffee/kibble_organisation.coffee b/ui/js/coffee/kibble_organisation.coffee
index 3f7d74a..847cd6e 100644
--- a/ui/js/coffee/kibble_organisation.coffee
+++ b/ui/js/coffee/kibble_organisation.coffee
@@ -117,7 +117,7 @@ memberInvited = (json, state) ->
 membershipList = (json, state) ->
     
     # Invite member form
-    h = new HTML('h3', {}, "Invite a member to this organisation")
+    h = new HTML('h3', {}, "Invite a member to #{userAccount.defaultOrganisation}")
     state.widget.inject(h, true)
     inp = new HTML('input', {id: "email", type: "text", placeholder: "email@ddres"})
     btn = new HTML('input', {type: 'button', class: 'btn btn-success', value: "Invite member", onclick: 'inviteMember(get("email").value, false);'})
@@ -127,6 +127,8 @@ membershipList = (json, state) ->
     
     
     # Existing membership list
+    h = new HTML('h3', {}, "Current membership of #{userAccount.defaultOrganisation}:")
+    state.widget.inject(h)
     list = new HTML('table')
     
     for member in json.members

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.