Skip to content

Commit

Permalink
Make more text fields clearable
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek committed Sep 6, 2020
1 parent 9ef007a commit 517ed8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# QOwnNotes Web Companion Changelog

## 20.9.0
- Now the [Material Design Icons](https://materialdesignicons.com/) are used as icons
- now the [Material Design Icons](https://materialdesignicons.com/) are used as icons
instead of Google's Material Icons (that were using icon fonts) to allow disabling
of icon fonts in Firefox (for [#25](https://github.com/qownnotes/web-companion/issues/25))
- all text fields are now clearable with a small `x` icon

## 20.8.2
- fixed adding of bookmarks due to Vue/Vuetify update
Expand Down
2 changes: 1 addition & 1 deletion app/components/bookmark-all-tabs-button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<v-container grid-list-md>
<v-layout wrap>
<v-flex xs12 sm12>
<v-text-field ref="editedBookmarkDescription" id="editedBookmarkDescription" tabindex="10" v-model="editedBookmark.description" label="Description"></v-text-field>
<v-text-field ref="editedBookmarkDescription" id="editedBookmarkDescription" tabindex="10" v-model="editedBookmark.description" label="Description" clearable></v-text-field>
</v-flex>
</v-layout>
</v-container>
Expand Down
6 changes: 3 additions & 3 deletions app/pages/popup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@
<v-container grid-list-md>
<v-layout wrap>
<v-flex xs12 sm6>
<v-text-field ref="editedBookmarkName" id="editedBookmarkName" tabindex="10" v-model="editedBookmark.name" label="Link name"></v-text-field>
<v-text-field ref="editedBookmarkName" id="editedBookmarkName" tabindex="10" v-model="editedBookmark.name" label="Link name" clearable></v-text-field>
</v-flex>
<v-flex xs12 sm6>
<v-text-field tabindex="12" v-model="editedBookmark.description" label="Description"></v-text-field>
<v-text-field tabindex="12" v-model="editedBookmark.description" label="Description" clearable></v-text-field>
</v-flex>
<v-flex xs12 sm12>
<v-text-field tabindex="11" v-model="editedBookmark.url" label="URL"></v-text-field>
<v-text-field tabindex="11" v-model="editedBookmark.url" label="URL" clearable></v-text-field>
</v-flex>
</v-layout>
</v-container>
Expand Down

0 comments on commit 517ed8e

Please sign in to comment.