terrier-engine 4.50.2 → 4.50.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -87,7 +87,8 @@ export class DiveDeliveryPanel extends TerrierPart<DiveEditorState> {
|
|
|
87
87
|
this.renderDistribution(distContainer, dist)
|
|
88
88
|
}
|
|
89
89
|
})
|
|
90
|
-
Fragments.button(parent, this.theme, "New", "glyp-plus_outline"
|
|
90
|
+
Fragments.button(parent, this.theme, "New", "glyp-plus_outline")
|
|
91
|
+
.class('secondary')
|
|
91
92
|
.emitClick(this.newKey)
|
|
92
93
|
|
|
93
94
|
// deliveries
|
|
@@ -114,7 +114,8 @@ export default class DivePlotList extends TerrierPart<DiveEditorState> {
|
|
|
114
114
|
render(parent: PartTag): any {
|
|
115
115
|
this.renderCollection(parent, "plots")
|
|
116
116
|
|
|
117
|
-
Fragments.button(parent, this.theme, "New Plot", "glyp-plus_outline"
|
|
117
|
+
Fragments.button(parent, this.theme, "New Plot", "glyp-plus_outline")
|
|
118
|
+
.class('secondary')
|
|
118
119
|
.emitClick(this.newKey)
|
|
119
120
|
}
|
|
120
121
|
|