Przeglądaj źródła

fix

Signed-off-by: Marino Faggiana <marino@marinofaggiana.com>
Marino Faggiana 1 rok temu
rodzic
commit
1bbe9b38fb

+ 1 - 1
Nextcloud.xcodeproj/project.pbxproj

@@ -4276,7 +4276,7 @@
 			repositoryURL = "https://github.com/nextcloud/NextcloudKit";
 			requirement = {
 				kind = exactVersion;
-				version = 2.2.0;
+				version = 2.3.0;
 			};
 		};
 		F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */ = {

+ 3 - 0
iOSClient/Select/NCSelect.swift

@@ -499,6 +499,9 @@ extension NCSelect: UICollectionViewDataSource {
                 cell.separator.isHidden = false
             }
 
+            // Add TAGS
+            cell.setTags(tags: Array(metadata.tags))
+
             return cell
         }
 

+ 1 - 1
iOSClient/Share/NCSharePaging.swift

@@ -50,6 +50,7 @@ class NCSharePaging: UIViewController {
         super.viewDidLoad()
 
         view.backgroundColor = .systemBackground
+        title = NSLocalizedString("_details_", comment: "")
 
         navigationItem.leftBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_close_", comment: ""), style: .done, target: self, action: #selector(exitTapped))
         NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillShow(notification:)), name: UIResponder.keyboardWillShowNotification, object: nil)
@@ -89,7 +90,6 @@ class NCSharePaging: UIViewController {
         pagingViewController.delegate = self
         pagingViewController.select(index: page.rawValue)
         let pagingIndexItem = self.pagingViewController(pagingViewController, pagingItemAt: page.rawValue) as? PagingIndexItem
-        self.title = pagingIndexItem?.title
 
         (pagingViewController.view as? NCSharePagingView)?.setupConstraints()
         pagingViewController.reloadMenu()