Skip to content

Commit

Permalink
Fix spacing of group info text
Browse files Browse the repository at this point in the history
  • Loading branch information
brianyu28 committed Feb 5, 2023
1 parent 28cb842 commit 68d74e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion Streamline/StreamlineApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@ struct StreamlineApp: App {
Settings {
SettingsView()
}

}
}
6 changes: 5 additions & 1 deletion Streamline/Views/WorkflowGroups/GroupView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ struct GroupView: View {
workflowGroup: $group
)
} else {
Text("Create or select a workflow to view details.")
HStack {
Spacer()
Text("Create or select a workflow to view details.")
Spacer()
}
}
}
.frame(minHeight: 200)
Expand Down

0 comments on commit 68d74e8

Please sign in to comment.