You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by sh...@apache.org on 2019/02/26 20:23:09 UTC

[kibble] branch master updated: Fix typo

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2109acc  Fix typo
     new d718dde  Merge pull request #21 from esrakarakas/patch-1
2109acc is described below

commit 2109acc7e77b20712af6503b6fdc01d4edd819ac
Author: esrakarakas <es...@gmail.com>
AuthorDate: Sun Feb 24 19:21:22 2019 +0300

    Fix typo
---
 ui/js/coffee/kibble_organisation.coffee | 4 ++--
 ui/js/kibble.v1.js                      | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ui/js/coffee/kibble_organisation.coffee b/ui/js/coffee/kibble_organisation.coffee
index 381033d..f6a4edc 100644
--- a/ui/js/coffee/kibble_organisation.coffee
+++ b/ui/js/coffee/kibble_organisation.coffee
@@ -86,7 +86,7 @@ orglist = (json, state) ->
         
     if userAccount.userlevel == "admin"
         fieldset = new HTML('fieldset', { style: { float: "left", margin: '30px'}})
-        legend = new HTML('legend', {}, "Create a new orgsanisation:")
+        legend = new HTML('legend', {}, "Create a new organisation:")
         fieldset.inject(legend)
         
         fieldset.inject(keyValueForm('text', 'orgname', 'Name of the organisation:', 'Foo, inc.'))
@@ -153,4 +153,4 @@ membershipList = (json, state) ->
         
     state.widget.inject(list)
     
-    
\ No newline at end of file
+
diff --git a/ui/js/kibble.v1.js b/ui/js/kibble.v1.js
index 1325acf..6029039 100644
--- a/ui/js/kibble.v1.js
+++ b/ui/js/kibble.v1.js
@@ -3007,7 +3007,7 @@ orglist = function(json, state) {
         margin: '30px'
       }
     });
-    legend = new HTML('legend', {}, "Create a new orgsanisation:");
+    legend = new HTML('legend', {}, "Create a new organisation:");
     fieldset.inject(legend);
     fieldset.inject(keyValueForm('text', 'orgname', 'Name of the organisation:', 'Foo, inc.'));
     fieldset.inject(keyValueForm('textarea', 'orgdesc', 'Description:', 'Foo, inc. is awesome and does stuff.'));