comparison LazyBear/Views/Home/Helpers/StockRow.swift @ 428:8c58ce834d95

Bug fixes and change assets
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Fri, 18 Jun 2021 12:43:17 +0200
parents 4effac4733b0
children 3ca32ff79630
comparison
equal deleted inserted replaced
427:e707dbfc3115 428:8c58ce834d95
48 .frame(height: 250) 48 .frame(height: 250)
49 } 49 }
50 .padding(.bottom) 50 .padding(.bottom)
51 .sheet(isPresented: $showList) { 51 .sheet(isPresented: $showList) {
52 if showWatchlistSheet ?? false { 52 if showWatchlistSheet ?? false {
53 WatchlistSheet(listName: adaptListTitle(listName), companies: companies) 53 WatchlistSheet(listName: listName, apiCompanies: companies)
54 .environment(\.managedObjectContext, self.moc) 54 .environment(\.managedObjectContext, self.moc)
55 } else { 55 } else {
56 StockSheet(listName: adaptListTitle(listName), companies: companies) 56 StockSheet(listName: adaptListTitle(listName), companies: companies)
57 } 57 }
58 } 58 }