You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2020/10/28 04:38:34 UTC

[cloudstack-primate] branch master updated: Display day name instead of label (#834)

This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git


The following commit(s) were added to refs/heads/master by this push:
     new 46e8140  Display day name instead of label (#834)
46e8140 is described below

commit 46e814064bd2353f44e210e4de2ddcf9fbd13b1f
Author: Rakesh <ra...@gmail.com>
AuthorDate: Wed Oct 28 05:38:27 2020 +0100

    Display day name instead of label (#834)
    
    Co-authored-by: Rakesh Venkatesh <r....@global.leaseweb.com>
---
 src/views/storage/FormSchedule.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/storage/FormSchedule.vue b/src/views/storage/FormSchedule.vue
index feea52e..603ec61 100644
--- a/src/views/storage/FormSchedule.vue
+++ b/src/views/storage/FormSchedule.vue
@@ -258,7 +258,7 @@ export default {
         const dayName = this.listDayOfWeek[index]
         this.dayOfWeek.push({
           id: dayName,
-          name: 'label.' + this.$t(dayName)
+          name: this.$t('label.' + dayName)
         })
       }
     },