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
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ UNRELEASED CHANGES:
* Redirect to registration page if there is no account
* Improve heroku integration
* Add bullet points to lists in call log
* Fix notification messages and localisation

RELEASED VERSIONS:

Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/stripe.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"/js/app.js": "/js/app.js?id=2987881c567905437e76",
"/js/app.js": "/js/app.js?id=d1678c413ac12660adab",
"/css/app.css": "/css/app.css?id=2984556e5f69d69788e7",
"/css/stripe.css": "/css/stripe.css?id=956554a2e96db30fafa3",
"/js/app.js.map": "/js/app.js.map?id=584d38fa2be39f21a8a1",
"/js/app.js.map": "/js/app.js.map?id=777901963cfd2578f403",
"/css/app.css.map": "/css/app.css.map?id=a1585d15bdf5306642f7",
"/css/stripe.css.map": "/css/stripe.css.map?id=80d7af9d49b0922d35e6",
"/js/stripe.js": "/js/stripe.js?id=55d823b61fc4f7e8b1ab",
"/js/stripe.js.map": "/js/stripe.js.map?id=915574c92ea6ddd5203e"
"/js/stripe.js.map": "/js/stripe.js.map?id=5b213d247049ab3bc318"
}
6 changes: 3 additions & 3 deletions resources/assets/js/components/people/Notes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'people.notes_create_success'),
title: this.$t('people.notes_create_success'),
text: '',
type: 'success'
});
Expand All @@ -196,7 +196,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'people.notes_update_success'),
title: this.$t('people.notes_update_success'),
text: '',
type: 'success'
});
Expand All @@ -218,7 +218,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'people.notes_delete_success'),
title: this.$t('people.notes_delete_success'),
text: '',
type: 'success'
});
Expand Down
6 changes: 3 additions & 3 deletions resources/assets/js/components/people/Pets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'people.pets_create_success'),
title: this.$t('people.pets_create_success'),
text: '',
type: 'success'
});
Expand Down Expand Up @@ -204,7 +204,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'people.pets_update_success'),
title: this.$t('people.pets_update_success'),
text: '',
type: 'success'
});
Expand All @@ -218,7 +218,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'people.pets_delete_success'),
title: this.$t('people.pets_delete_success'),
text: '',
type: 'success'
});
Expand Down
6 changes: 3 additions & 3 deletions resources/assets/js/components/settings/ContactFieldTypes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'settings.personalization_contact_field_type_add_success'),
title: this.$t('settings.personalization_contact_field_type_add_success'),
text: '',
width: '500px',
type: 'success'
Expand All @@ -295,7 +295,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'settings.personalization_contact_field_type_edit_success'),
title: this.$t('settings.personalization_contact_field_type_edit_success'),
text: '',
width: '500px',
type: 'success'
Expand All @@ -316,7 +316,7 @@

this.$notify({
group: 'main',
title: _.get(window.trans, 'settings.personalization_contact_field_type_delete_success'),
title: this.$t('settings.personalization_contact_field_type_delete_success'),
text: '',
width: '500px',
type: 'success'
Expand Down