From 0e461a382257979037e8927e5f6b468635b0a7fe Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Mon, 13 Apr 2026 09:57:23 -0500 Subject: feat: add power user actions Implements: https://todo.sr.ht/~ccleberg/hutch/52 Implements: https://todo.sr.ht/~ccleberg/hutch/53 Implements: https://todo.sr.ht/~ccleberg/hutch/54 --- Hutch/Views/Builds/BuildTaskLogView.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Hutch/Views/Builds/BuildTaskLogView.swift') diff --git a/Hutch/Views/Builds/BuildTaskLogView.swift b/Hutch/Views/Builds/BuildTaskLogView.swift index fda69f6..3011e34 100644 --- a/Hutch/Views/Builds/BuildTaskLogView.swift +++ b/Hutch/Views/Builds/BuildTaskLogView.swift @@ -1,7 +1,8 @@ import SwiftUI -import UIKit struct BuildTaskLogView: View { + @Environment(AppState.self) private var appState + let taskName: String let viewModel: BuildDetailViewModel @@ -32,7 +33,7 @@ struct BuildTaskLogView: View { } ToolbarItem(placement: .topBarTrailing) { Button { - UIPasteboard.general.string = logText + appState.copyToPasteboard(logText, label: "build log") } label: { Image(systemName: "doc.on.doc") } -- cgit v1.2.3