@pronto-tools-and-more/components 15.7.0 → 15.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +2 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
@@ -640,8 +640,8 @@ var Collection = ({
|
|
640
640
|
// src/parts/Conditions/Conditions.ts
|
641
641
|
var Conditions = {
|
642
642
|
SearchResultsAreEmpty: "!$context.phrase",
|
643
|
-
LanguageIsGerman:
|
644
|
-
LanguageIsNotGerman:
|
643
|
+
LanguageIsGerman: `$context.language === "de"`,
|
644
|
+
LanguageIsNotGerman: `$context.language !== "de"`
|
645
645
|
};
|
646
646
|
|
647
647
|
// src/parts/Container/Container.tsx
|