diff --git a/pass/Views/FillPasswordTableViewCell.swift b/pass/Views/FillPasswordTableViewCell.swift index 8ea7d97..03b4dcc 100644 --- a/pass/Views/FillPasswordTableViewCell.swift +++ b/pass/Views/FillPasswordTableViewCell.swift @@ -25,6 +25,7 @@ class FillPasswordTableViewCell: ContentTableViewCell { @IBAction func generatePassword(_ sender: UIButton) { let plainPassword = Utils.randomString(length: 16) contentTextField.attributedText = Utils.attributedPassword(plainPassword: plainPassword) + Utils.copyToPasteboard(textToCopy: plainPassword) } override func getContent() -> String? {