Skip to content

Commit

Permalink
fix: Fixed search UI issue on iOS (#280)
Browse files Browse the repository at this point in the history
* rev: Reverted dynamic link detect because of UI issue

* fix: Fixed search UI issue on iOS
  • Loading branch information
WindowsMEMZ authored Feb 24, 2024
1 parent 6b6b31f commit 0c2fc1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions MeowBili/InMain/SearchView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ struct SearchMainView: View {
ZStack {
NavigationLink("", destination: SearchView(keyword: searchText), isActive: $isSearchPresented)
.frame(width: 0, height: 0)
.hidden()
.disabled(true)
TextField("Search.\(Image(systemName: "magnifyingglass"))", text: $searchText)
.submitLabel(.search)
Expand Down
1 change: 1 addition & 0 deletions MeowBili/Others/LinkDetectText.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import Foundation
import SwiftUI
import AuthenticationServices

// swiftlint:disable trailing_whitespace
struct LinkDetectText: View {
@Binding var inputURL: String
@State var markdownText = try! AttributedString(markdown: "")
Expand Down
2 changes: 1 addition & 1 deletion ci_scripts/ci_post_xcodebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ if [[ "$CI_WORKFLOW" == "Canary Deploy" ]]; then
TESTFLIGHT_DIR_PATH=../TestFlight
mkdir $TESTFLIGHT_DIR_PATH
echo "CI 自动生成信息,24小时内的main分支的提交:\n" > $TESTFLIGHT_DIR_PATH/WhatToTest.zh-Hans.txt
git fetch -a && git log --since="24 hours ago" main --pretty=format:"%s" >! $TESTFLIGHT_DIR_PATH/WhatToTest.zh-Hans.txt
git fetch -a --deepen 40 && git log --since="24 hours ago" main --pretty=format:"%s" >! $TESTFLIGHT_DIR_PATH/WhatToTest.zh-Hans.txt
fi

0 comments on commit 0c2fc1d

Please sign in to comment.