Skip to content

Commit cb9a85f

Browse files
Remove underscores from default name and default prefix constants
1 parent 9c51ce6 commit cb9a85f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

forward_engineering/api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,8 @@ const convertPropertyValue = (property, level, type, value) => {
528528
};
529529

530530
const transformToValidGremlinName = name => {
531-
const DEFAULT_NAME = 'New_vertex';
532-
const DEFAULT_PREFIX = 'v_';
531+
const DEFAULT_NAME = 'New vertex';
532+
const DEFAULT_PREFIX = 'v';
533533

534534
if (!name || !_.isString(name)) {
535535
return DEFAULT_NAME;

0 commit comments

Comments
 (0)