Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(store): update out of stock detection for MediaMarkt and Saturn #1549

Merged
merged 2 commits into from
Jan 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/store/model/mediamarkt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,23 @@ export const Mediamarkt: Store = {
outOfStock: [
{
container: '#root',
text: ['Dieser artikel ist aktuell nicht verfügbar.']
text: ['Dieser Artikel ist aktuell nicht verfügbar.']
},
{
container: '#root',
text: ['Leider keine Lieferung möglich']
},
{
container: '#root',
text: ['Nicht verfügbar']
},
{
container: '#root',
text: ['Dieser Artikel ist dauerhaft ausverkauft']
},
{
container: '#root',
text: ['Dieser Artikel ist bald wieder für Sie verfügbar']
}
]
},
Expand Down
14 changes: 13 additions & 1 deletion src/store/model/saturn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,23 @@ export const Saturn: Store = {
outOfStock: [
{
container: '#root',
text: ['Dieser artikel ist aktuell nicht verfügbar.']
text: ['Dieser Artikel ist aktuell nicht verfügbar.']
},
{
container: '#root',
text: ['Leider keine Lieferung möglich']
},
{
container: '#root',
text: ['Nicht verfügbar']
},
{
container: '#root',
text: ['Dieser Artikel ist dauerhaft ausverkauft']
},
{
container: '#root',
text: ['Dieser Artikel ist bald wieder für Sie verfügbar']
}
]
},
Expand Down