Skip to content

Commit

Permalink
Update other image paths with assetBuildUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
samiff committed Sep 1, 2021
1 parent e05d2a4 commit 0ca167f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions projects/plugins/backup/src/js/components/Backups.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ const Backups = () => {
</div>
<div class="lg-col-span-1 md-col-span-4 sm-col-span-0"></div>
<div class="backup__animation lg-col-span-6 md-col-span-2 sm-col-span-2">
<img className="backup__animation-el-1" src={ BackupAnim1 } alt="" />
<img className="backup__animation-el-2" src={ BackupAnim2 } alt="" />
<img className="backup__animation-el-3" src={ BackupAnim3 } alt="" />
<img className="backup__animation-el-1" src={ assetBuildUrl + BackupAnim1 } alt="" />
<img className="backup__animation-el-2" src={ assetBuildUrl + BackupAnim2 } alt="" />
<img className="backup__animation-el-3" src={ assetBuildUrl + BackupAnim3 } alt="" />
</div>
</div>
);
Expand Down Expand Up @@ -195,28 +195,28 @@ const Backups = () => {
<div className="lg-col-span-1 md-col-span-4 sm-col-span-0"></div>
<div className="lg-col-span-2 md-col-span-2 sm-col-span-2">
<StatBlock
icon={ PostsIcon }
icon={ assetBuildUrl + PostsIcon }
label={ __( 'Posts', 'jetpack-backup' ) }
value={ stats.posts }
/>
</div>
<div className="lg-col-span-2 md-col-span-2 sm-col-span-2">
<StatBlock
icon={ UploadsIcon }
icon={ assetBuildUrl + UploadsIcon }
label={ __( 'Uploads', 'jetpack-backup' ) }
value={ stats.uploads }
/>
</div>
<div className="lg-col-span-2 md-col-span-2 sm-col-span-2">
<StatBlock
icon={ PluginsIcon }
icon={ assetBuildUrl + PluginsIcon }
label={ __( 'Plugins', 'jetpack-backup' ) }
value={ stats.plugins }
/>
</div>
<div className="lg-col-span-2 md-col-span-2 sm-col-span-2">
<StatBlock
icon={ ThemesIcon }
icon={ assetBuildUrl + ThemesIcon }
label={ __( 'Themes', 'jetpack-backup' ) }
value={ stats.themes }
/>
Expand Down

0 comments on commit 0ca167f

Please sign in to comment.