Skip to content

Commit 7129778

Browse files
Update code formatting
Signed-off-by: Christian Wolf <[email protected]>
1 parent 90db29a commit 7129778

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/RecipeEdit.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -669,12 +669,12 @@ export default {
669669
670670
this.selectedKeywords = this.recipe.keywords
671671
.split(",")
672-
.map(kw => kw.trim())
672+
.map((kw) => kw.trim())
673673
// Remove any empty keywords
674674
// If the response from the server is just an empty
675675
// string, split will create an array of a single empty
676676
// string
677-
.filter(kw => kw !== "")
677+
.filter((kw) => kw !== "")
678678
679679
// fallback if fetching all keywords fails
680680
this.selectedKeywords.forEach((kw) => {

0 commit comments

Comments
 (0)