Commit eddd5e0b authored by Jose Vargas's avatar Jose Vargas

Address code style concerns

parent 12e82066
...@@ -23,7 +23,7 @@ export default { ...@@ -23,7 +23,7 @@ export default {
}, },
computed: { computed: {
minutesUsageDataByMonth() { minutesUsageDataByMonth() {
return this?.ciMinutesUsage.map((cur) => [cur.month, cur.minutes]); return this.ciMinutesUsage.map((cur) => [cur.month, cur.minutes]);
}, },
}, },
}; };
......
...@@ -83,7 +83,7 @@ export default { ...@@ -83,7 +83,7 @@ export default {
v-for="(month, index) in months" v-for="(month, index) in months"
:key="index" :key="index"
:is-checked="selectedMonth === month" :is-checked="selectedMonth === month"
:is-check-item="true" is-check-item
@click="changeSelectedMonth(month)" @click="changeSelectedMonth(month)"
> >
{{ month }} {{ month }}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment