diff --git a/ui/component/settingSystem/view.jsx b/ui/component/settingSystem/view.jsx index a1a968645..464f9ad6c 100644 --- a/ui/component/settingSystem/view.jsx +++ b/ui/component/settingSystem/view.jsx @@ -225,18 +225,6 @@ export default function SettingSystem(props: Props) { {__("If disabled, LBRY will be very sad and you won't be helping improve the network.")}{' '} {__('If you set a limit, playing videos may exceed your limit until cleanup runs every 30 minutes.')}{' '} . -
- {`Content Hosting using ${formatBytes(contentSpaceUsed * BYTES_PER_MB)} of ${ - daemonSettings[DAEMON_SETTINGS.BLOB_STORAGE_LIMIT_MB] - ? formatBytes(daemonSettings[DAEMON_SETTINGS.BLOB_STORAGE_LIMIT_MB] * BYTES_PER_MB) - : 'Unlimited' - }`} -
-- {`Network Hosting using ${formatBytes(networkSpaceUsed * BYTES_PER_MB)} of ${formatBytes( - daemonSettings[DAEMON_SETTINGS.NETWORK_STORAGE_LIMIT_MB] * BYTES_PER_MB - )}`} -
} > @@ -249,6 +237,18 @@ export default function SettingSystem(props: Props) { label={__('Enable Data Hosting')} /> + {daemonSettings.save_blobs && ( ++ {`Content Hosting using ${formatBytes(contentSpaceUsed * BYTES_PER_MB)} of ${ + daemonSettings[DAEMON_SETTINGS.BLOB_STORAGE_LIMIT_MB] + ? formatBytes(daemonSettings[DAEMON_SETTINGS.BLOB_STORAGE_LIMIT_MB] * BYTES_PER_MB) + : 'Unlimited' + }`} +
++ {`Network Hosting using ${formatBytes(networkSpaceUsed * BYTES_PER_MB)} of ${formatBytes( + daemonSettings[DAEMON_SETTINGS.NETWORK_STORAGE_LIMIT_MB] * BYTES_PER_MB + )}`} +
+