Skip to content

Commit

Permalink
Fix spacing for ConnectionTest file
Browse files Browse the repository at this point in the history
  • Loading branch information
JPry committed Mar 8, 2021
1 parent 8fc1c4e commit 099c576
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ protected function render_admin_page() {
Product ID <input name="product_id" type="text" value="<?php echo ! empty( $_GET['product_id'] ) ? intval( $_GET['product_id'] ) : ''; ?>" /></label>
</label>
<label for="async-sync-product">Async?</label>
<input id="async-sync-product" name="async" value=1 type="checkbox" <?php echo ! empty( $_GET['async'] ) ? 'checked' : ''; ?> />
<input id="async-sync-product" name="async" value=1 type="checkbox" <?php echo ! empty( $_GET['async'] ) ? 'checked' : ''; ?> />
<button class="button">Sync Product with Google Merchant Center</button>
</p>
</td>
Expand All @@ -553,7 +553,7 @@ protected function render_admin_page() {
<p>
<label for="async-sync-all-products">Async?</label>
<input id="async-sync-all-products" name="async" value=1 type="checkbox" <?php echo ! empty( $_GET['async'] ) ? 'checked' : ''; ?> />
<button class="button">Sync All Products with Google Merchant Center</button>
<button class="button">Sync All Products with Google Merchant Center</button>
</p>
</td>
</tr>
Expand Down Expand Up @@ -992,7 +992,7 @@ function ( $url ) {
$this->response = 'Error submitting products to Google: ' . $exception->getMessage();
}
} else {
// schedule a job
// schedule a job
/** @var UpdateAllProducts $update_job */
$update_job = $this->container->get( UpdateAllProducts::class );
$update_job->start();
Expand Down

0 comments on commit 099c576

Please sign in to comment.