Skip to content

Commit

Permalink
fix: export method from time range service
Browse files Browse the repository at this point in the history
  • Loading branch information
23nobody committed Oct 24, 2023
1 parent 6bba669 commit f4a1da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/common/src/time/time-range.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class TimeRangeService {
);
}

private timeRangeFromUrlString(timeRangeFromUrl: string): TimeRange {
public timeRangeFromUrlString(timeRangeFromUrl: string): TimeRange {
const duration = this.timeDurationService.durationFromString(timeRangeFromUrl);
if (duration) {
return new RelativeTimeRange(duration);
Expand Down

0 comments on commit f4a1da1

Please sign in to comment.