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 8
8
package com .intellij .lang .jsgraphql .ide .project .schemastatus ;
9
9
10
10
import com .intellij .icons .AllIcons ;
11
+ import com .intellij .ide .BrowserUtil ;
11
12
import com .intellij .ide .IdeEventQueue ;
12
- import com .intellij .ide .actions .ContextHelpAction ;
13
13
import com .intellij .ide .util .treeView .IndexComparator ;
14
14
import com .intellij .lang .jsgraphql .ide .editor .GraphQLRerunLatestIntrospectionAction ;
15
15
import com .intellij .lang .jsgraphql .ide .project .graphqlconfig .GraphQLConfigManager ;
@@ -264,7 +264,12 @@ public void actionPerformed(AnActionEvent e) {
264
264
GraphQLConfigManager .getService (myProject ).buildConfigurationModel (null , null );
265
265
}
266
266
});
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
+ });
268
273
269
274
final JPanel panel = new JPanel (new BorderLayout ());
270
275
final ActionManager actionManager = ActionManager .getInstance ();
You can’t perform that action at this time.
0 commit comments