[Client] Resolve #2225

This commit is contained in:
syuilo
2018-12-02 15:26:56 +09:00
parent 6f92d601ec
commit bb14895fd8
5 changed files with 56 additions and 5 deletions

View File

@@ -109,8 +109,12 @@ export default Vue.extend({
userId: this.user.id
});
this.$root.alert({
type: 'success',
title: 'Done!',
text: this.$t('list-pushed').replace('{user}', this.user.name).replace('{list}', list.title)
text: this.$t('list-pushed', {
user: this.user.name,
list: list.title
})
});
});
}