Upgrade golangci-lint
ci / lint-test (pull_request) Successful in 6m0s
ci / build (pull_request) Successful in 6m19s

This commit is contained in:
Joe Julian
2026-04-26 16:48:10 -07:00
parent ff81ae633c
commit de19f84305
9 changed files with 415 additions and 369 deletions
+6 -6
View File
@@ -802,8 +802,8 @@ func (u *ui) prefillAdvancedSyncRemoteFromSavedBinding() {
}
func (u *ui) syncDialogTitle() string {
switch {
case u.syncDialogPurpose == syncDialogPurposeRemoteSetup:
switch u.syncDialogPurpose {
case syncDialogPurposeRemoteSetup:
if _, ok := u.selectedVaultRemoteBinding(); ok {
return "Remote Sync Settings"
}
@@ -814,8 +814,8 @@ func (u *ui) syncDialogTitle() string {
}
func (u *ui) syncDialogDescription() string {
switch {
case u.syncDialogPurpose == syncDialogPurposeRemoteSetup:
switch u.syncDialogPurpose {
case syncDialogPurposeRemoteSetup:
if _, ok := u.selectedVaultRemoteBinding(); ok {
return "Review or change this vault's saved WebDAV target, credentials, and sync mode."
}
@@ -826,8 +826,8 @@ func (u *ui) syncDialogDescription() string {
}
func (u *ui) syncDialogConfirmButtonLabel() string {
switch {
case u.syncDialogPurpose == syncDialogPurposeRemoteSetup:
switch u.syncDialogPurpose {
case syncDialogPurposeRemoteSetup:
if _, ok := u.selectedVaultRemoteBinding(); ok {
return "Save Remote Sync Settings"
}