Skip to content

Commit

Permalink
fix: Show the destination folder name in the rules list on iOS (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmorley authored Nov 21, 2022
1 parent e41a018 commit 6299e20
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ios/Fileaway/Views/Wizard/RulePicker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@ struct RulePicker: View {
NavigationLink {
RuleFormView(url: url, ruleModel: rule)
} label: {
Text(rule.name)
VStack {
Text(rule.name)
.horizontalSpace(.trailing)
Text(rule.rootUrl.displayName)
.foregroundColor(.secondary)
.horizontalSpace(.trailing)
}
}
}
}
Expand Down

0 comments on commit 6299e20

Please sign in to comment.