chore: change update workspace URL to upgrade guide (#9178)

* chore: change update workspace URL to upgrade guide

* chore: change upgrade workspace url
This commit is contained in:
Vishal Sharma 2025-09-25 16:38:38 +05:30 committed by GitHub
parent 0b4831ca04
commit 6ac812b5af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ function ChangelogModal({ changelog, onClose }: Props): JSX.Element {
const onClickUpdateWorkspace = (): void => { const onClickUpdateWorkspace = (): void => {
window.open( window.open(
'https://github.com/SigNoz/signoz/releases', 'https://signoz.io/upgrade-path',
'_blank', '_blank',
'noopener,noreferrer', 'noopener,noreferrer',
); );

View File

@ -91,7 +91,7 @@ describe('ChangelogModal', () => {
renderChangelog(); renderChangelog();
fireEvent.click(screen.getByText('Update my workspace')); fireEvent.click(screen.getByText('Update my workspace'));
expect(window.open).toHaveBeenCalledWith( expect(window.open).toHaveBeenCalledWith(
'https://github.com/SigNoz/signoz/releases', 'https://signoz.io/upgrade-path',
'_blank', '_blank',
'noopener,noreferrer', 'noopener,noreferrer',
); );