Skip to content

Commit

Permalink
v1.1.3: Clarified UI flow for renaming states
Browse files Browse the repository at this point in the history
  • Loading branch information
encadyma committed Jul 13, 2018
1 parent 381abb8 commit de35ec5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webext-chronos",
"version": "1.1.2",
"version": "1.1.3",
"description": "A productive tab manager doubling as a website blocker. Let online work flow like time.",
"scripts": {
"prego": "webpack --config webpack.config.js",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Chronos",
"version": "1.1.2",
"version": "1.1.3",
"author": "encadyma",
"description": "A productive tab manager doubling as a website blocker. Let online work flow like time.",

Expand Down
3 changes: 2 additions & 1 deletion src/popup/ViewState.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
<div class="tab-item" @click="toggleRenameState" :class="{ 'tab-item_selected_blinking': isRenamingState, 'tab-item_confirmed': justUpdatedName }">
<div class="tab-item-inner">
<img :src="'../icons/ic_create.png'" class="tab-item__favicon"/>
<span>Rename this state</span>
<span v-if="isRenamingState">Save new name</span>
<span v-else>Rename this state</span>
</div>
</div>
<div class="tabs-expandable__input tabs-expandable__input_orange" v-if="isRenamingState">
Expand Down

0 comments on commit de35ec5

Please sign in to comment.