jsbox-cview 1.5.27 → 1.5.28
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.
|
@@ -649,7 +649,7 @@ export class DynamicPreferenceListView extends Base<
|
|
|
649
649
|
}
|
|
650
650
|
case "symbol-action": {
|
|
651
651
|
data.symbol = {
|
|
652
|
-
hidden: false,
|
|
652
|
+
hidden: n.symbol ? false : true,
|
|
653
653
|
symbol: n.symbol,
|
|
654
654
|
tintColor: n.tintColor ?? $color("primaryText"),
|
|
655
655
|
contentMode: n.contentMode ?? 1,
|
|
@@ -594,7 +594,7 @@ class DynamicPreferenceListView extends base_1.Base {
|
|
|
594
594
|
}
|
|
595
595
|
case "symbol-action": {
|
|
596
596
|
data.symbol = {
|
|
597
|
-
hidden: false,
|
|
597
|
+
hidden: n.symbol ? false : true,
|
|
598
598
|
symbol: n.symbol,
|
|
599
599
|
tintColor: (_b = n.tintColor) !== null && _b !== void 0 ? _b : $color("primaryText"),
|
|
600
600
|
contentMode: (_c = n.contentMode) !== null && _c !== void 0 ? _c : 1,
|