Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/AppNavigation/RootNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<AppNavigationItem
v-if="isContactsInteractionEnabled && recentlyContactedContacts && recentlyContactedContacts.contacts.length > 0"
id="recentlycontacted"
:name="GROUP_RECENTLY_CONTACTED"
:name="t('contacts', 'Recently contacted')"
:to="{
name: 'group',
params: { selectedGroup: GROUP_RECENTLY_CONTACTED },
Expand Down Expand Up @@ -243,10 +243,10 @@
props: {
loading: {
type: Boolean,
default: true,

Check warning on line 246 in src/components/AppNavigation/RootNavigation.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Boolean prop should only be defaulted to false
},

contactsList: {

Check warning on line 249 in src/components/AppNavigation/RootNavigation.vue

View workflow job for this annotation

GitHub Actions / NPM lint

'contactsList' of property found, but never used
type: Array,
required: true,
},
Expand Down
2 changes: 1 addition & 1 deletion src/models/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const LIST_SIZE = 60
// Dynamic default groups
export const GROUP_ALL_CONTACTS: DefaultGroup = t('contacts', 'All contacts')
export const GROUP_NO_GROUP_CONTACTS: DefaultGroup = t('contacts', 'Not grouped')
export const GROUP_RECENTLY_CONTACTED: DefaultGroup = t('contacts', 'Recently contacted')
export const GROUP_RECENTLY_CONTACTED: DefaultGroup = 'Recently contacted'

// Organization default chart for all contacts
export const CHART_ALL_CONTACTS: DefaultChart = t('contacts', 'Organization chart')
Expand Down
Loading