Use long dash for excluded migration profiles
This commit is contained in:
parent
01e0559060
commit
a2f17cc905
|
@ -278,7 +278,7 @@ private extension MigrateContentView.ListView {
|
||||||
func icon(forStatus status: MigrationStatus) -> some View {
|
func icon(forStatus status: MigrationStatus) -> some View {
|
||||||
switch status {
|
switch status {
|
||||||
case .excluded:
|
case .excluded:
|
||||||
Text("--")
|
Text(Strings.Unlocalized.longDash)
|
||||||
|
|
||||||
case .pending:
|
case .pending:
|
||||||
ProgressView()
|
ProgressView()
|
||||||
|
|
|
@ -146,7 +146,7 @@ private extension MigrateContentView.TableView {
|
||||||
var statusView: some View {
|
var statusView: some View {
|
||||||
switch status {
|
switch status {
|
||||||
case .excluded:
|
case .excluded:
|
||||||
Text("--")
|
Text(Strings.Unlocalized.longDash)
|
||||||
|
|
||||||
case .pending:
|
case .pending:
|
||||||
ThemeImage(.progress)
|
ThemeImage(.progress)
|
||||||
|
|
|
@ -118,6 +118,8 @@ extension Strings {
|
||||||
|
|
||||||
public static let ipv6 = "IPv6"
|
public static let ipv6 = "IPv6"
|
||||||
|
|
||||||
|
public static let longDash = "—"
|
||||||
|
|
||||||
public static let mtu = "MTU"
|
public static let mtu = "MTU"
|
||||||
|
|
||||||
public static let openVPN = "OpenVPN"
|
public static let openVPN = "OpenVPN"
|
||||||
|
|
Loading…
Reference in New Issue