Skip to content

Commit

Permalink
Version 1.0.0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
tkorakas committed Jul 4, 2017
1 parent 60cdaa9 commit bb60779
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Gmail lists",
"description": "Create mail lists and inject them easily on Gmail.",
"version": "0.0.4",
"version": "1.0.0",
"author": "Thanos Korakas",
"browser_action": {
"default_title": "Gmail lists",
Expand Down
2 changes: 1 addition & 1 deletion build/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -10008,7 +10008,7 @@ var RecipientsList = function (_Component) {
var newRecipient = this.text.value.trim();

// Check if list name already exists.
if (!this.state.items.includes(newRecipient)) {
if (!this.state.items.includes(newRecipient) && newRecipient !== '') {
// Add new item to array and save to chrome storage and update state.
var items = [].concat(_toConsumableArray(this.state.items), [newRecipient]);
this.saveToChromeStorage(items, true);
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Gmail lists",
"description": "Create mail lists and inject them easily on Gmail.",
"version": "0.0.4",
"version": "1.0.0",
"author": "Thanos Korakas",
"browser_action": {
"default_title": "Gmail lists",
Expand Down

0 comments on commit bb60779

Please sign in to comment.