Skip to content

Commit

Permalink
Merge branch 'trunk' into try/add-dataviews
Browse files Browse the repository at this point in the history
Signed-off-by: brookewp <brooke.kaminski@automattic.com>
  • Loading branch information
brookewp committed Dec 17, 2024
2 parents 8b132f8 + 14e1427 commit d598957
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions remote-data-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author: WPVIP
* Author URI: https://wpvip.com
* Text Domain: remote-data-blocks
* Version: 0.3.2
* Version: 0.3.3
* Requires at least: 6.7
* Requires PHP: 8.1
*/
Expand All @@ -18,7 +18,7 @@

define( 'REMOTE_DATA_BLOCKS__PLUGIN_ROOT', __FILE__ );
define( 'REMOTE_DATA_BLOCKS__PLUGIN_DIRECTORY', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'REMOTE_DATA_BLOCKS__PLUGIN_VERSION', '0.3.2' );
define( 'REMOTE_DATA_BLOCKS__PLUGIN_VERSION', '0.3.3' );

define( 'REMOTE_DATA_BLOCKS__REST_NAMESPACE', 'remote-data-blocks/v1' );

Expand Down
10 changes: 6 additions & 4 deletions src/data-sources/DataSourceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,12 @@ const DataSourceList = () => {
return (
<>
{ serviceIcon && (
<Icon
icon={ serviceIcon }
style={ { marginRight: '16px', verticalAlign: 'text-bottom' } }
/>
<div className="rdb-data-source-name-and-icon">
<Icon
icon={ serviceIcon }
style={ { marginRight: '16px', verticalAlign: 'text-bottom' } }
/>
</div>
) }
{ item.display_name }
</>
Expand Down
4 changes: 4 additions & 0 deletions src/settings/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,7 @@ body {

}

.rdb-data-source-name-and-icon {
display: flex;
align-items: center;
}

0 comments on commit d598957

Please sign in to comment.