Missed references fixed

This commit is contained in:
David Bolack
2026-06-27 16:08:07 -05:00
parent f0dc66bf2b
commit 1e2d76885f
2 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -224,8 +224,8 @@ const api = {
metadata.bleed = { metadata.bleed = {
top : brew?.bleed?.top || '.125in', top : brew?.bleed?.top || '.125in',
bottom : brew?.bleed?.bottom || '.125in', bottom : brew?.bleed?.bottom || '.125in',
left : brew?.bleed?.left || '.125in', inner : brew?.bleed?.inner || '.125in',
right : brew?.bleed?.right || '.125in', outer : brew?.bleed?.outer || '.125in',
}; };
// Copy Required Safe Space or Use defaults // Copy Required Safe Space or Use defaults
+8 -8
View File
@@ -404,8 +404,8 @@ theme: phb
bleed: bleed:
top: .125in top: .125in
bottom: .125in bottom: .125in
left: .125in outer: .125in
right: .125in inner: .125in
safetySpace: safetySpace:
top: .25in top: .25in
bottom: .25in bottom: .25in
@@ -447,8 +447,8 @@ theme: phb
bleed: bleed:
top: .125in top: .125in
bottom: .125in bottom: .125in
left: .125in outer: .125in
right: .125in inner: .125in
safetySpace: safetySpace:
top: .25in top: .25in
bottom: .25in bottom: .25in
@@ -1140,8 +1140,8 @@ brew`);
'bleed:\n' + 'bleed:\n' +
' top: 1.5in\n' + ' top: 1.5in\n' +
' bottom: 1.5in\n' + ' bottom: 1.5in\n' +
' left: 1.5in\n' + ' outer: 1.5in\n' +
' right: 1.5in\n' + ' inner: 1.5in\n' +
'safetySpace:\n' + 'safetySpace:\n' +
' top: 1.25in\n' + ' top: 1.25in\n' +
' bottom: 1.25in\n' + ' bottom: 1.25in\n' +
@@ -1177,8 +1177,8 @@ brew`);
// Paper Specfications // Paper Specfications
expect(testBrew.bleed.top).toEqual('1.5in'); expect(testBrew.bleed.top).toEqual('1.5in');
expect(testBrew.bleed.bottom).toEqual('1.5in'); expect(testBrew.bleed.bottom).toEqual('1.5in');
expect(testBrew.bleed.left).toEqual('1.5in'); expect(testBrew.bleed.inner).toEqual('1.5in');
expect(testBrew.bleed.right).toEqual('1.5in'); expect(testBrew.bleed.outer).toEqual('1.5in');
expect(testBrew.safetySpace.top).toEqual('1.25in'); expect(testBrew.safetySpace.top).toEqual('1.25in');
expect(testBrew.safetySpace.bottom).toEqual('1.25in'); expect(testBrew.safetySpace.bottom).toEqual('1.25in');