Skip to content

Commit

Permalink
Changed default information
Browse files Browse the repository at this point in the history
  • Loading branch information
Ranoiaetep committed Jan 21, 2021
1 parent b6d23d8 commit c4a245e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AutoRefersher/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ struct ContentView: View {
@State private var addressList: [String] = [""]
@State private var originalField: [String] = [""]
@State private var addressCount: Int = 1
@State private var visitTimes: Double = 50
@State private var remainingTimes: Double = 50
@State private var visitTimes: Double = 100
@State private var remainingTimes: Double = 100
@State private var optionMenu: Bool = false
@State private var interval: Double = 1.8
@State private var started: Bool = false
Expand All @@ -42,7 +42,7 @@ struct ContentView: View {
VStack {
ForEach((0..<addressCount), id: \.self) { index in
VStack {
TextField("https://www.apple.com", text: $addressList[index], onCommit: {
TextField("https://github.com/Ranoiaetep/AutoRefresher", text: $addressList[index], onCommit: {
if !addressList[index].isEmpty &&
addressList[index] != originalField[index] &&
!(addressList.last?.isEmpty ?? true) {
Expand Down

0 comments on commit c4a245e

Please sign in to comment.