@@ -320,7 +320,7 @@ export default {
320
320
/**
321
321
* Warning messages
322
322
*
323
- * @returns {Object| boolean}
323
+ * @return {object | boolean}
324
324
*/
325
325
warning() {
326
326
if (!this.contact.dav) {
@@ -340,7 +340,7 @@ export default {
340
340
/**
341
341
* Conflict message
342
342
*
343
- * @returns {string|boolean}
343
+ * @return {string|boolean}
344
344
*/
345
345
conflict() {
346
346
if (this.contact.conflict) {
@@ -352,7 +352,7 @@ export default {
352
352
/**
353
353
* Contact properties copied and sorted by rfcProps.fieldOrder
354
354
*
355
- * @returns {Array}
355
+ * @return {Array}
356
356
*/
357
357
sortedProperties() {
358
358
return this.localContact.properties
@@ -367,7 +367,7 @@ export default {
367
367
/**
368
368
* Contact properties filtered and grouped by rfcProps.fieldOrder
369
369
*
370
- * @returns {Object }
370
+ * @return {object }
371
371
*/
372
372
groupedProperties() {
373
373
return this.sortedProperties
@@ -390,7 +390,7 @@ export default {
390
390
/**
391
391
* Fake model to use the propertySelect component
392
392
*
393
- * @returns {Object }
393
+ * @return {object }
394
394
*/
395
395
addressbookModel() {
396
396
return {
@@ -404,7 +404,7 @@ export default {
404
404
* Usable addressbook object linked to the local contact
405
405
*
406
406
* @param {string} [addressbookId] set the addressbook id
407
- * @returns {string}
407
+ * @return {string}
408
408
*/
409
409
addressbook: {
410
410
get() {
@@ -418,7 +418,7 @@ export default {
418
418
/**
419
419
* Fake model to use the propertyGroups component
420
420
*
421
- * @returns {Object }
421
+ * @return {object }
422
422
*/
423
423
groupsModel() {
424
424
return {
@@ -431,7 +431,7 @@ export default {
431
431
* Usable groups object linked to the local contact
432
432
*
433
433
* @param {string[]} data An array of groups
434
- * @returns {Array}
434
+ * @return {Array}
435
435
*/
436
436
groups: {
437
437
get() {
@@ -447,7 +447,7 @@ export default {
447
447
* Store getters filtered and mapped to usable object
448
448
* This is the list of addressbooks that are available to write
449
449
*
450
- * @returns {Array}
450
+ * @return {Array}
451
451
*/
452
452
addressbooksOptions() {
453
453
return this.addressbooks
@@ -743,7 +743,7 @@ export default {
743
743
* Should display the property
744
744
*
745
745
* @param {Property} property the property to check
746
- * @returns {boolean}
746
+ * @return {boolean}
747
747
*/
748
748
canDisplay(property) {
749
749
// Make sure we have some model for the property and check for ITEM.PROP custom label format
0 commit comments