feat: select the list of tags sorted by name (#429)

pull/430/head
Ryan Wang 2022-02-09 11:40:12 +08:00 committed by GitHub
parent 1b0f988945
commit b7e68acc67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ export default {
},
methods: {
handleListTags(callback) {
apiClient.tag.list({ more: true }).then(response => {
apiClient.tag.list({ sort: 'name,asc', more: true }).then(response => {
this.tags = response.data
if (callback) {
callback()