Skip to content

Commit a4d716b

Browse files
authored
Merge pull request #2367 from Financial-Times/update/image_service_source_param_corrections
[Fix] Image Service sources
2 parents ca385fb + 47fe5f4 commit a4d716b

File tree

39 files changed

+86
-86
lines changed

39 files changed

+86
-86
lines changed

apps/website/src/content/posts/2021-03-02-newsletter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ The [Origami Image Service](https://www.ft.com/__origami/service/image/v2/) can
2828
Here's an example placeholder request, for an image that's 500px square, of maximum quality:
2929

3030
```
31-
https://www.ft.com/__origami/service/image/v2/images/placeholder/?width=500&height=500&quality=lossless&source=test
31+
https://www.ft.com/__origami/service/image/v2/images/placeholder/?width=500&height=500&quality=lossless&source=origami
3232
```
3333

34-
![A placeholder image which displays the width, height, format, and quality of the image requested as text within the image.](https://www.ft.com/__origami/service/image/v2/images/placeholder/?width=500&height=500&quality=lossless&source=test)
34+
![A placeholder image which displays the width, height, format, and quality of the image requested as text within the image.](https://www.ft.com/__origami/service/image/v2/images/placeholder/?width=500&height=500&quality=lossless&source=origami)
3535

3636

3737

apps/website/src/pages/emails/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ $figcaption.prop(
189189
style="padding: 40px 0 40px 0;"
190190
>
191191
<img
192-
src="https://www.ft.com/__origami/service/image/v2/images/raw/https://origami.ft.com/assets/images/email-newsletter-header-v1.png?source=origami-newsletter&width=140&dpr=2"
192+
src="https://www.ft.com/__origami/service/image/v2/images/raw/https://origami.ft.com/assets/images/email-newsletter-header-v1.png?source=origami&width=140&dpr=2"
193193
width="140"
194194
style="display: block; max-width: 100%;"
195195
alt="Origami"

components/o-audio/test/scss/index.test.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import 'true';
2-
$system-code: "test";
2+
$system-code: "origami";
33
@import '../../main';
44

55
$_test-environment: true;

components/o-buttons/test/scss/_mixins.test.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
// arrow-left is an example of an icon
5454
@include contains($selector: false) {
5555
.o-buttons--secondary.o-buttons-icon--arrow-left {
56-
background-image: url("https://images.ft.com/v3/image/raw/fticon-v1:arrow-left?source=test&tint=%230D7680,%230D7680&format=svg");
56+
background-image: url("https://images.ft.com/v3/image/raw/fticon-v1:arrow-left?source=origami&tint=%230D7680,%230D7680&format=svg");
5757
}
5858
}
5959
}
@@ -160,7 +160,7 @@
160160
@include contains() {
161161
background-color: #262a33;
162162
min-height: 40px;
163-
background-image: url("https://images.ft.com/v3/image/raw/fticon-v1:arrow-left?source=test&tint=%23FFFFFF,%23FFFFFF&format=svg");
163+
background-image: url("https://images.ft.com/v3/image/raw/fticon-v1:arrow-left?source=origami&tint=%23FFFFFF,%23FFFFFF&format=svg");
164164
}
165165
}
166166
}

components/o-buttons/test/scss/index.test.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import 'true';
2-
$system-code: "test";
2+
$system-code: "origami";
33

44
@import '../../main';
55

components/o-colors/demos/src/contrast-checker/contrast-checker.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
&.o-overlay-trigger,
9696
&.trigger-input {
9797
// stylelint-disable-line selector-no-qualifying-type
98-
background-image: url('https://images.ft.com/v3/image/raw/fticon-v1%3Aplus?source=o-colors&width=24&height=24&tint=gray');
98+
background-image: url('https://images.ft.com/v3/image/raw/fticon-v1%3Aplus?source=origami&width=24&height=24&tint=gray');
9999
}
100100
}
101101
}

components/o-colors/test/scss/index.test.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import 'true';
2-
$system-code: "test";
2+
$system-code: "origami";
33
@import '../../main';
44

55
$_o-colors-test-environment: true;

components/o-comments/test/scss/index.test.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import 'true';
2-
$system-code: "test";
2+
$system-code: "origami";
33
@import '../../main';
44

55
$_test-environment: true;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import 'true';
2-
$system-code: "test";
2+
$system-code: "origami";
33
@import '../../main';
44

55
$_test-environment: true;

components/o-editorial-typography/test/scss/index.test.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import 'true';
2-
$system-code: "test";
2+
$system-code: "origami";
33
@import '../../main';
44

55
$_test-environment: true;

0 commit comments

Comments
 (0)