diff options
| author | Christian Cleberg <[email protected]> | 2026-04-01 22:18:48 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-01 22:18:48 -0500 |
| commit | 6ce067249e6665151a4e5b66807673f5f1d9a1c4 (patch) | |
| tree | 3ff985099e56b6ef980730a84ac5461033362183 | |
| parent | 1ac3401b031c492d8a067e2149df1df5c0f23e9a (diff) | |
| download | hutch-6ce067249e6665151a4e5b66807673f5f1d9a1c4.tar.gz hutch-6ce067249e6665151a4e5b66807673f5f1d9a1c4.tar.bz2 hutch-6ce067249e6665151a4e5b66807673f5f1d9a1c4.zip | |
reverse order of swipe actions for user acls in trackers
| -rw-r--r-- | Hutch/Views/Tickets/TrackerManagementView.swift | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Hutch/Views/Tickets/TrackerManagementView.swift b/Hutch/Views/Tickets/TrackerManagementView.swift index f07c878..5c08e4a 100644 --- a/Hutch/Views/Tickets/TrackerManagementView.swift +++ b/Hutch/Views/Tickets/TrackerManagementView.swift @@ -741,20 +741,19 @@ struct TrackerACLManagementSheet: View { .font(.subheadline.weight(.medium)) TrackerPermissionSummary(permissions: entry.permissions) } - .swipeActions(edge: .leading, allowsFullSwipe: false) { - Button { - editingACL = entry - } label: { - Label("Edit", systemImage: "pencil") - } - .tint(.blue) - } .swipeActions(edge: .trailing, allowsFullSwipe: false) { Button(role: .destructive) { pendingDeletion = entry } label: { Label("Delete", systemImage: "trash") } + + Button { + editingACL = entry + } label: { + Label("Edit", systemImage: "pencil") + } + .tint(.blue) } } } |
