Skip to content

Commit

Permalink
Add back filters
Browse files Browse the repository at this point in the history
  • Loading branch information
josephfusco committed May 6, 2024
1 parent b196821 commit b543fe1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wpgraphql-ide.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
exit;
}

define( 'WPGRAPHQL_IDE_VERSION', '1.0.1' );
define( 'WPGRAPHQL_IDE_VERSION', '1.1.8' );
define( 'WPGRAPHQL_IDE_ROOT_ELEMENT_ID', 'wpgraphql-ide-root' );
define( 'WPGRAPHQL_IDE_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) );
define( 'WPGRAPHQL_IDE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down Expand Up @@ -236,7 +236,7 @@ function enqueue_react_app_with_styles(): void {
plugins_url( 'build/index.js', __FILE__ ),
$asset_file['dependencies'],
$asset_file['version'],
true
false
);

wp_localize_script(
Expand Down Expand Up @@ -311,8 +311,8 @@ function get_app_context(): array {
'pluginName' => get_plugin_header( 'Name' ),
'externalFragments' => apply_filters( 'wpgraphqlide_external_fragments', [] ),
'avatarUrl' => $avatar_url,
'drawerButtonLabel' => '🚀',
'drawerButtonLoadingLabel' => '',
'drawerButtonLabel' => apply_filters( 'wpgraphqlide_drawer_button_label', '🚀' ),
'drawerButtonLoadingLabel' => apply_filters( 'wpgraphqlide_drawer_button_loading_label', '' ),
]
);
}
Expand Down

0 comments on commit b543fe1

Please sign in to comment.