Skip to content

Commit

Permalink
fix(store): update out of stock detection for MediaMarkt and Saturn (#…
Browse files Browse the repository at this point in the history
…1549)

Fixes #1545
  • Loading branch information
X123Moin committed Jan 3, 2021
1 parent 8ab6e1f commit 4f86d24
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
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

0 comments on commit 4f86d24

Please sign in to comment.