From 7666701596c448583f8f5109f881da91a1fa688a Mon Sep 17 00:00:00 2001 From: Thomas Letsch Groch Date: Sat, 25 Jul 2020 23:02:11 -0300 Subject: [PATCH] Typo fix --- components/section_interests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/section_interests.js b/components/section_interests.js index 627a2cb..eb8ca22 100644 --- a/components/section_interests.js +++ b/components/section_interests.js @@ -29,7 +29,7 @@ var sectionInterestsComponent = { methods: { addInterest: function() { - var item = models.wDefaultInterest(); + var item = models.getDefaultInterest(); this.$root.sections.interests.push(item); }, @@ -63,4 +63,4 @@ var sectionInterestsComponent = { this.$root.moveArrayPosition(this.$root.sections.interests, index, index + 1); } } -}; \ No newline at end of file +};