Skip to content

Commit

Permalink
Merge pull request #595 from korczis/feature/BIA-189
Browse files Browse the repository at this point in the history
[BIA-189] Fix nasty typo
  • Loading branch information
zsvoboda committed Sep 11, 2015
2 parents 89ebde4 + 0f61e38 commit a6f02c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gooddata/models/metadata/report_definition.rb
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def replace(what, for_what = nil)
content['grid']['columnWidths'] = widths.map do |item|
if item.is_a?(Hash)
GoodData::Helpers.deep_dup(item).tap do |i|
if i['locator'].length > 0 && ['locator'][0].key?('attributeHeaderLocator')
if i['locator'].length > 0 && i['locator'][0].key?('attributeHeaderLocator')
i['locator'][0]['attributeHeaderLocator']['uri'].gsub!("[#{uri_what}]", "[#{uri_for_what}]")
end
end
Expand Down

0 comments on commit a6f02c4

Please sign in to comment.