Skip to content

Commit

Permalink
fix: Folders shouldn't be scrollable on iOS when loading (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmorley authored Nov 21, 2022
1 parent ce2ba96 commit 33a8b7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion interact
2 changes: 1 addition & 1 deletion ios/Fileaway/Views/Viewer/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ struct ContentView: View {
if let directoryViewModel = sceneModel.directoryViewModel {
DirectoryView(directoryViewModel: directoryViewModel)
} else {
Placeholder("No Directory Selected")
PlaceholderView("No Directory Selected")
.searchable()
}
}
Expand Down
2 changes: 1 addition & 1 deletion macos/Fileaway/Views/Viewer/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct ContentView: View {
if let directoryViewModel = sceneModel.directoryViewModel {
DirectoryView(directoryViewModel: directoryViewModel)
} else {
Placeholder("No Directory Selected")
PlaceholderView("No Directory Selected")
.searchable()
}
}
Expand Down

0 comments on commit 33a8b7c

Please sign in to comment.