fix: temporarily disable jump server

This commit is contained in:
lollipopkit
2023-11-19 14:47:27 +08:00
parent 691471dae5
commit 1a49c7870c
8 changed files with 65 additions and 59 deletions

View File

@@ -28,9 +28,6 @@ class SettingStore extends PersistentStore {
5,
);
/// Duration of [timeout]
Duration get timeoutD => Duration(seconds: timeout.fetch());
/// Record history of SFTP path and etc.
late final recordHistory = StoreProperty(
box,
@@ -65,6 +62,13 @@ class SettingStore extends PersistentStore {
isDesktop,
);
/// Disk view: amount / IO
late final serverTabPreferDiskAmount = StoreProperty(
box,
'serverTabPreferDiskAmount',
false,
);
// ------END------
late final primaryColor = StoreProperty(
@@ -224,13 +228,6 @@ class SettingStore extends PersistentStore {
late final serverFuncBtnsDisplayName =
StoreProperty(box, 'serverFuncBtnsDisplayName', true);
/// Disk view: amount / IO
late final serverTabPreferDiskAmount = StoreProperty(
box,
'serverTabPreferDiskAmount',
false,
);
// Never show these settings for users
//
// ------BEGIN------