From 4f86d2462e5d1eba6a7d7839585c0fe8c1b70da5 Mon Sep 17 00:00:00 2001 From: X123Moin <76645861+X123Moin@users.noreply.github.com> Date: Sun, 3 Jan 2021 08:09:14 +0100 Subject: [PATCH] fix(store): update out of stock detection for MediaMarkt and Saturn (#1549) Fixes #1545 --- src/store/model/mediamarkt.ts | 14 +++++++++++++- src/store/model/saturn.ts | 14 +++++++++++++- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/src/store/model/mediamarkt.ts b/src/store/model/mediamarkt.ts index a26cd6c..da87611 100644 --- a/src/store/model/mediamarkt.ts +++ b/src/store/model/mediamarkt.ts @@ -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'] } ] }, diff --git a/src/store/model/saturn.ts b/src/store/model/saturn.ts index 3323ae0..4dcbd88 100644 --- a/src/store/model/saturn.ts +++ b/src/store/model/saturn.ts @@ -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'] } ] },