redux-devtools icon indicating copy to clipboard operation
redux-devtools copied to clipboard

Add support for JetBrains server in openFile

Open IliyaBrook opened this issue 1 year ago • 1 comments

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

IliyaBrook avatar Mar 06 '24 13:03 IliyaBrook