Skip to content

Commit

Permalink
updating fix for helper
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzevic committed Apr 19, 2024
1 parent 14bb9d9 commit a8a716e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/).

## [1.3.5]

### Fixed
- `getDataManifestPath` helper now returns the correct path.

## [1.3.4]

### Changed
Expand Down Expand Up @@ -131,6 +136,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a

- Initial production release.

[1.3.5]: https://github.com/infinum/eightshift-forms-utils/compare/1.3.4...1.3.5
[1.3.4]: https://github.com/infinum/eightshift-forms-utils/compare/1.3.3...1.3.4
[1.3.3]: https://github.com/infinum/eightshift-forms-utils/compare/1.3.2...1.3.3
[1.3.2]: https://github.com/infinum/eightshift-forms-utils/compare/1.3.1...1.3.2
Expand Down
2 changes: 1 addition & 1 deletion src/Helpers/UtilsDataHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ public static function getDataManifestRaw(string $type, string $file = 'manifest
public static function getDataManifestPath(string $type, string $file = 'manifest.json'): string
{
$sep = \DIRECTORY_SEPARATOR;
return Components::getProjectPaths('srcPath') . "vendor-prefixed/infinum/eightshift-forms-utils/{$sep}Data{$sep}{$type}{$sep}{$file}";
return Components::getProjectPaths('srcPath') . "vendor-prefixed/infinum/eightshift-forms-utils{$sep}src{$sep}Data{$sep}{$type}{$sep}{$file}";
}
}

0 comments on commit a8a716e

Please sign in to comment.