mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
feature: added warning label when config files have changed in premium configuration files menu (#1718)
* added warning label when config files have changed in premium configuration files display * moved warning display from PageSettingsApiNativeConfigs.qml to PageSettingsApiServerInfo.qml
This commit is contained in:
@@ -187,7 +187,13 @@ PageType {
|
||||
|
||||
iconPath: "qrc:/images/controls/alert-circle.svg"
|
||||
|
||||
visible: ApiAccountInfoModel.data("hasExpiredWorker")
|
||||
visible: {
|
||||
for (let i = 0; i < ApiCountryModel.count; ++i) {
|
||||
if (ApiCountryModel.get(i).isWorkerExpired)
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
LabelWithButtonType {
|
||||
|
||||
Reference in New Issue
Block a user