File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/main/com/intellij/lang/jsgraphql/ide/project/schemastatus Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 88package com .intellij .lang .jsgraphql .ide .project .schemastatus ;
99
1010import com .intellij .icons .AllIcons ;
11+ import com .intellij .ide .BrowserUtil ;
1112import com .intellij .ide .IdeEventQueue ;
12- import com .intellij .ide .actions .ContextHelpAction ;
1313import com .intellij .ide .util .treeView .IndexComparator ;
1414import com .intellij .lang .jsgraphql .ide .editor .GraphQLRerunLatestIntrospectionAction ;
1515import com .intellij .lang .jsgraphql .ide .project .graphqlconfig .GraphQLConfigManager ;
@@ -264,7 +264,12 @@ public void actionPerformed(AnActionEvent e) {
264264 GraphQLConfigManager .getService (myProject ).buildConfigurationModel (null , null );
265265 }
266266 });
267- leftActionGroup .add (new ContextHelpAction ("" ));
267+ leftActionGroup .add (new AnAction ("Help" , "Open the JS GraphQL Plugin Documentation" , AllIcons .Actions .Help ) {
268+ @ Override
269+ public void actionPerformed (AnActionEvent e ) {
270+ BrowserUtil .browse ("https://github.com/jimkyndemeyer/js-graphql-intellij-plugin" );
271+ }
272+ });
268273
269274 final JPanel panel = new JPanel (new BorderLayout ());
270275 final ActionManager actionManager = ActionManager .getInstance ();
You can’t perform that action at this time.
0 commit comments