Skip to content

Commit

Permalink
refac: fix same styles for titles of pages
Browse files Browse the repository at this point in the history
  • Loading branch information
sbgap committed Oct 21, 2024
1 parent a162119 commit 6560073
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -590,21 +590,21 @@ export default {
},
{
icon: 'history',
text: i18n.t('NotificationHistory'),
text: i18n.t('Notification History'),
path: '/notificationhistory',
perms: 'read:notification_history',
show: true
},
{
icon: 'av_timer',
text: i18n.t('NotificationDelay'),
text: i18n.t('Notification Delays'),
path: '/notificationdelays',
perms: 'read:notification_rules',
show: true
},
{
icon: 'arrow_upward',
text: i18n.t('EscalationRules'),
text: i18n.t('Escalation Rules'),
path: '/escalationrules',
perms: 'read:escalation_rules',
show: true
Expand Down Expand Up @@ -639,14 +639,14 @@ export default {
},
{
icon: 'people',
text: i18n.t('NotificationGroups'),
text: i18n.t('Notification Groups'),
path: '/notificationgroups',
perms: 'read:notification_groups',
show: true
},
{
icon: 'phone',
text: i18n.t('OnCall'),
text: i18n.t('On Call'),
path: '/oncall',
perms: 'read:notification_rules',
show: true
Expand All @@ -667,14 +667,14 @@ export default {
},
{
icon: 'notifications',
text: i18n.t('NotificationChannels'),
text: i18n.t('Notification Channels'),
path: '/notificationchannels',
perms: 'read:notification_channels',
show: true
},
{
icon: 'notifications',
text: i18n.t('NotificationRules'),
text: i18n.t('Notification Rules'),
path: '/notificationrules',
perms: 'read:notification_rules',
show: true
Expand Down
2 changes: 1 addition & 1 deletion src/components/EscalationRuleList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@

<v-card>
<v-card-title class="title">
{{ $t('escalationRules') }}
{{ $t('Escalation Rules') }}
<v-spacer />
<v-btn-toggle
v-model="status"
Expand Down
2 changes: 1 addition & 1 deletion src/components/NotificationChannelList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@

<v-card>
<v-card-title class="title">
{{ $t('notificationChannels') }}
{{ $t('Notification Channels') }}
<v-spacer />
<v-tooltip bottom>
<template slot="activator">
Expand Down
2 changes: 1 addition & 1 deletion src/components/NotificationDelayList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<v-card>
<v-card-title class="title">
{{ $t('notificationDelays') }}
{{ $t('Notification Delays') }}
</v-card-title>

<v-data-table
Expand Down
2 changes: 1 addition & 1 deletion src/components/NotificationRuleList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@

<v-card>
<v-card-title class="title">
{{ $t('notificationRules') }}
{{ $t('Notification Rules') }}
<v-spacer />
<span
v-if="selectableRows"
Expand Down
2 changes: 1 addition & 1 deletion src/components/OnCallList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@

<v-card>
<v-card-title class="title">
{{ $t('onCalls') }}
{{ $t('On Call') }}
<v-spacer />
<v-btn-toggle
v-model="status"
Expand Down

0 comments on commit 6560073

Please sign in to comment.