|
|
@@ -31,10 +31,8 @@ struct ProjectPanelView: View {
|
|
|
.padding(.trailing, 10)
|
|
|
}
|
|
|
HStack(alignment: .top) {
|
|
|
- ScrollView {
|
|
|
- TextField("Project Notes", text: $item.notes, axis: .vertical)
|
|
|
- .padding(.leading, 20)
|
|
|
- }.frame(maxHeight: 85)
|
|
|
+ TextField("Project Notes", text: $item.notes, axis: .vertical)
|
|
|
+ .padding(.leading, 20)
|
|
|
if let grp = $allGroups.first(where: { $0.name.wrappedValue == item.category }) {
|
|
|
ColorPicker("", selection: grp.color).disabled(true).scaledToFit()
|
|
|
}
|