Skip to content

Commit c33206b

Browse files
committed
fix(kubectl-ctx): remove tr() fallback in DeleteConfirm to pass CI check
1 parent 9bb616b commit c33206b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kubectl-ctx/DeleteConfirm.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Item {
4141
}
4242

4343
NText {
44-
text: (pluginApi?.tr("delete.confirm") ?? "") + " " + root.resourceKind + "/" + root.resourceName + "?"
44+
text: pluginApi?.tr("delete.confirm") + " " + root.resourceKind + "/" + root.resourceName + "?"
4545
pointSize: Style.fontSizeM
4646
color: Color.mOnSurfaceVariant
4747
wrapMode: Text.WordWrap

0 commit comments

Comments
 (0)