mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-24 08:00:38 +00:00
Various fixes
This commit is contained in:
parent
27ce7fe916
commit
6e981a99fc
3 changed files with 2 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
|||
<string>development</string>
|
||||
<key>com.apple.developer.icloud-container-identifiers</key>
|
||||
<array>
|
||||
<string>iCloud.$(BUNDLE_ID_PREFIX).IceCubesApp</string>
|
||||
<string>iCloud.icecubesapp</string>
|
||||
</array>
|
||||
<key>com.apple.developer.icloud-services</key>
|
||||
<array>
|
||||
|
|
|
@ -25,7 +25,7 @@ extension StatusEditor {
|
|||
VStack(alignment: .leading, spacing: 8) {
|
||||
Text(draft.content)
|
||||
.font(.body)
|
||||
.lineLimit(3)
|
||||
.lineLimit(10)
|
||||
.foregroundStyle(theme.labelColor)
|
||||
Text(draft.creationDate, style: .relative)
|
||||
.font(.footnote)
|
||||
|
|
|
@ -190,8 +190,6 @@ extension StatusEditor {
|
|||
Text("\(value)")
|
||||
.foregroundColor(value < 0 ? .red : .secondary)
|
||||
.font(.callout.monospacedDigit())
|
||||
.contentTransition(.numericText(value: Double(value)))
|
||||
.animation(.default, value: value)
|
||||
.accessibilityLabel("accessibility.editor.button.characters-remaining")
|
||||
.accessibilityValue("\(value)")
|
||||
.accessibilityRemoveTraits(.isStaticText)
|
||||
|
|
Loading…
Reference in a new issue