Skip to content

Commit 7af75e5

Browse files
committed
Add spaces around + sign
1 parent 3695d06 commit 7af75e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dialog/overflow-menu/overflow-menu.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function createOptions(count: number): Array<string> {
99
if (options && count === options.length) {
1010
return options;
1111
}
12-
options = Array(count).fill(0).map((x, i) => "Option " + (i+1));
12+
options = Array(count).fill(0).map((x, i) => "Option " + (i + 1));
1313
return options;
1414
}
1515

0 commit comments

Comments
 (0)