File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ func (m *VMSelect) View() string {
42
42
view := "Which vm would you like to build on?\n "
43
43
for i , option := range m .Options {
44
44
if i == m .Cursor {
45
- view += "(• ) " + option + "\n "
45
+ view += "(■ ) " + option + "\n "
46
46
} else {
47
47
view += "( ) " + option + "\n "
48
48
}
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ func (m *Homepage) View() string {
75
75
view += "What would you like to do today?\n "
76
76
for i , option := range m .Options {
77
77
if i == m .Cursor {
78
- view += "(• ) " + string (option ) + "\n "
78
+ view += "(■ ) " + string (option ) + "\n "
79
79
} else {
80
80
view += "( ) " + string (option ) + "\n "
81
81
}
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ func (m *RunL1Node) View() string {
51
51
view := "? Which network will your node participate in?\n "
52
52
for i , option := range m .Options {
53
53
if i == m .Cursor {
54
- view += "(• ) " + string (option ) + "\n "
54
+ view += "(■ ) " + string (option ) + "\n "
55
55
} else {
56
56
view += "( ) " + string (option ) + "\n "
57
57
}
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ func (m *WeaveInit) View() string {
52
52
view := "? What action would you like to perform?\n "
53
53
for i , option := range m .Options {
54
54
if i == m .Cursor {
55
- view += "(• ) " + string (option ) + "\n "
55
+ view += "(■ ) " + string (option ) + "\n "
56
56
} else {
57
57
view += "( ) " + string (option ) + "\n "
58
58
}
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ func (hp *HomePage) View() string {
47
47
view := "Which action would you like to do?\n "
48
48
for i , transition := range hp .Transitions {
49
49
if i == hp .Cursor {
50
- view += "(• ) " + transition .GetName () + "\n "
50
+ view += "(■ ) " + transition .GetName () + "\n "
51
51
} else {
52
52
view += "( ) " + transition .GetName () + "\n "
53
53
}
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ func (ii *InitiaInit) View() string {
48
48
view := "weave weaveinit\n \n What action would you like to perform?\n "
49
49
for i , transition := range ii .Transitions {
50
50
if i == ii .Cursor {
51
- view += "(• ) " + transition .GetName () + "\n "
51
+ view += "(■ ) " + transition .GetName () + "\n "
52
52
} else {
53
53
view += "( ) " + transition .GetName () + "\n "
54
54
}
You can’t perform that action at this time.
0 commit comments