Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dcc-network/qml/PageSettings.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.15
import QtQuick.Layouts 1.15
Expand Down Expand Up @@ -40,6 +40,7 @@ DccObject {
id: sectionGeneric
parentName: root.parentUrl + "/body"
weight: 100
type: root.type
onEditClicked: modified = true
}
SectionSecret {
Expand Down
4 changes: 2 additions & 2 deletions dcc-network/qml/PageSystemProxy.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.15
import QtQuick.Controls 2.15
Expand Down Expand Up @@ -83,7 +83,7 @@ DccObject {
}
}
Connections {
target: item
target: netItem
function onMethodChanged(m) {
method = m
}
Expand Down
3 changes: 2 additions & 1 deletion dcc-network/qml/SectionGeneric.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.15
import QtQuick.Controls 2.15
Expand All @@ -13,6 +13,7 @@ DccTitleObject {
property var config: new Object()
property string settingsID: ""
property var band
property int type: NetType.WiredItem

property string errorKey: ""
signal editClicked
Expand Down
Loading