Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/ghx/project_item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def _setup_field_configuration(field_configuration)
end

def normalized_field_value_name(name)
name.tr(" ", "_").downcase
name.tr(" ", "_").tr("-", "_").downcase
end

# Extracts the value from the field based on the field's data type. Thank you GraphQL for making this totally asinine.
Expand Down
2 changes: 1 addition & 1 deletion lib/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module GHX
VERSION = "0.4.0"
VERSION = "0.4.1"
end