mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-15 07:56:11 +08:00
Fix sshkey custom comment
Custom comments had been implemented but were not working.
This commit is contained in:
@ -21,9 +21,10 @@ class GitApp extends StatelessWidget {
|
||||
buildGitButtons() {
|
||||
return <Widget>[
|
||||
RaisedButton(
|
||||
child: Text("Generate Keys"),
|
||||
onPressed: generateSSHKeys,
|
||||
),
|
||||
child: Text("Generate Keys"),
|
||||
onPressed: () {
|
||||
generateSSHKeys(comment: "Git Sample App");
|
||||
}),
|
||||
RaisedButton(
|
||||
child: Text("Git Clone"),
|
||||
onPressed: () async {
|
||||
|
Reference in New Issue
Block a user