diff --git a/src/App.vue b/src/App.vue index 1025d37..931ec72 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,5 @@ @@ -49,8 +49,10 @@
-

{{ - t('uloztostorageprovider', 'Create a note to get started') }}

+

+ {{ + t('uloztostorageprovider', 'Create a note to get started') }} +

@@ -88,7 +90,7 @@ export default { computed: { /** * Return the currently selected note object - * @returns {Object|null} + * @return {object | null} */ currentNote() { if (this.currentNoteId === null) { @@ -99,7 +101,7 @@ export default { /** * Returns true if a note is selected and its title is not empty - * @returns {Boolean} + * @return {boolean} */ savePossible() { return this.currentNote && this.currentNote.title !== '' @@ -122,7 +124,7 @@ export default { methods: { /** * Create a new note and focus the note content field automatically - * @param {Object} note Note object + * @param {object} note Note object */ openNote(note) { if (this.updating) { @@ -171,7 +173,7 @@ export default { }, /** * Create a new note by sending the information to the server - * @param {Object} note Note object + * @param {object} note Note object */ async createNote(note) { this.updating = true @@ -188,7 +190,7 @@ export default { }, /** * Update an existing note on the server - * @param {Object} note Note object + * @param {object} note Note object */ async updateNote(note) { this.updating = true @@ -202,7 +204,7 @@ export default { }, /** * Delete a note, remove it from the frontend and show a hint - * @param {Object} note Note object + * @param {object} note Note object */ async deleteNote(note) { try {