Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions blocks/table/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,19 +141,19 @@ export default async function decorate(block) {
// create price header
const priceTh = document.createElement('th');
const pricePTag = document.createElement('p');
pricePTag.textContent = 'price per case';
pricePTag.textContent = 'price per unit';
priceTh.append(pricePTag);

// create price header
const availableTh = document.createElement('th');
const availablePTag = document.createElement('p');
availablePTag.textContent = 'cases available';
availablePTag.textContent = 'units available';
availableTh.append(availablePTag);

// create quantity header
const quantityTh = document.createElement('th');
const quantityPTag = document.createElement('p');
quantityPTag.textContent = 'cases';
quantityPTag.textContent = 'units';
quantityTh.append(quantityPTag);

labelRow.append(productTh, availableTh, priceTh, quantityTh);
Expand Down