We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ac8361 commit 9363372Copy full SHA for 9363372
HomeAssistant/Views/Settings/NFC/NFCTagViewController.swift
@@ -109,16 +109,10 @@ class NFCTagViewController: FormViewController {
109
\(eventDataStrings.joined(separator: indentation))
110
"""
111
} else {
112
- /*
113
- NO-BREAK SPACE
114
- Unicode: U+00A0, UTF-8: C2 A0
115
- */
116
- let nbsp = "\u{00a0}"
117
-
118
return """
119
- platform: tag
120
- tag_id:\(nbsp)\(identifier)
121
- device_id:\(nbsp)\(Current.settingsStore.integrationDeviceID)
+ tag_id: \(identifier)
+ device_id: \(Current.settingsStore.integrationDeviceID)
122
123
}
124
}, present: { [weak self] viewController in
0 commit comments