Fix error message in UpdateItem function (#15776)

pull/15766/head
Eslam Fakhry 2019-11-20 01:54:35 +02:00 committed by Scott Addie
parent 6d76949bf6
commit 96166d092a
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ function updateItem() {
body: JSON.stringify(item)
})
.then(() => getItems())
.catch(error => console.error('Unable to delete item.', error));
.catch(error => console.error('Unable to update item.', error));
// </snippet_UpdateItem>
closeInput();