reduxjs / redux-devtools

DevTools for Redux with hot reloading, action replay, and customizable UI
http://youtube.com/watch?v=xsSnOQynTHs
MIT License
14.01k stars 1.16k forks source link

Add support for JetBrains server in openFile #1624

Open IliyaBrook opened 7 months ago

IliyaBrook commented 7 months ago

The code has been updated to include an additional case for 'JetBrains_server' in the switch statement. This allows the openFile function to generate a URL for opening files on a JetBrains server, respecting the particular file path and line.

The changes:


case 'jetbrains_server':
  url = `http://localhost:63342/api/file/?file=${filePath}&line=${line}`;
  break;

in packages/redux-devtools-inspector-monitor-trace-tab/src/openFile.ts
changeset-bot[bot] commented 7 months ago

⚠️ No Changeset found

Latest commit: 2202597be889691ac261de2c3737983766dfe17d

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR